Skip to content

Commit

Permalink
Remove unused pub export
Browse files Browse the repository at this point in the history
  • Loading branch information
cd-work committed Sep 1, 2023
1 parent 8204f8e commit 17df9d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
//! This module implements sandboxing on Linux based on the Landlock LSM,
//! combined with seccomp for anything other than the filesystem.

pub use landlock::ABI as LANDLOCK_ABI;
use landlock::{
make_bitflags, Access, AccessFs, BitFlags, Compatible, PathBeneath, PathFd, Ruleset,
RulesetAttr, RulesetCreated, RulesetCreatedAttr, RulesetStatus,
make_bitflags, Access, AccessFs, BitFlags, CompatLevel, Compatible, PathBeneath, PathFd,
Ruleset, RulesetAttr, RulesetCreated, RulesetCreatedAttr, RulesetStatus,
};
pub use landlock::{CompatLevel, ABI as LANDLOCK_ABI};

use crate::error::{Error, Result};
use crate::linux::seccomp::NetworkFilter;
Expand Down

0 comments on commit 17df9d4

Please sign in to comment.