Skip to content

Commit

Permalink
x: ban openssl as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed Feb 14, 2023
1 parent 9f1c394 commit fd24720
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions crates/x/src/lint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ pub fn run(args: Args) -> crate::Result<()> {
type_: BannedDepType::Always,
},
),
(
"openssl-sys".to_owned(),
BannedDepConfig {
message: "use rustls for TLS".to_owned(),
type_: BannedDepType::Always,
},
),
]
.into_iter()
.collect(),
Expand Down

0 comments on commit fd24720

Please sign in to comment.