Skip to content

Commit

Permalink
remove use std::convert::*
Browse files Browse the repository at this point in the history
Signed-off-by: Petre Eftime <[email protected]>
  • Loading branch information
Petre Eftime authored and petreeftime committed Sep 13, 2022
1 parent 6da07f7 commit d6ac0d9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/backend/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause

use std::collections::BTreeMap;
use std::convert::{Into, TryFrom, TryInto};

use crate::backend::bpf::*;
use crate::backend::rule::SeccompRule;
Expand Down
1 change: 0 additions & 1 deletion src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ pub use rule::SeccompRule;
use serde::Deserialize;

use core::fmt::Formatter;
use std::convert::TryFrom;
use std::fmt::Display;

use bpf::{
Expand Down
1 change: 0 additions & 1 deletion src/backend/rule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause

use crate::backend::{bpf::*, condition::SeccompCondition, Error, Result};
use std::convert::{From, TryFrom};

/// Rule that a filter attempts to match for a syscall.
///
Expand Down
1 change: 0 additions & 1 deletion src/frontend/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
//! [`SeccompCmpArgLen`](enum.SeccompCmpArgLen.html).

use std::collections::{BTreeMap, HashMap};
use std::convert::{TryFrom, TryInto};
use std::fmt;
use std::io::Read;
use std::result;
Expand Down

0 comments on commit d6ac0d9

Please sign in to comment.