Skip to content

Commit

Permalink
session: remove transisitive dependency on boringssl (#125)
Browse files Browse the repository at this point in the history
Removes the transitive dependency on boringssl by restricting the
set of features enabled on direct dependencies for session crate.
  • Loading branch information
brayniac authored Apr 9, 2024
1 parent da4a141 commit 9f50b74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = { workspace = true }
[dependencies]
bytes = { workspace = true }
clocksource = { workspace = true }
common = { path = "../common" }
common = { path = "../common", default-features = false }
log = { workspace = true }
metriken = { workspace = true }
pelikan-net = { workspace = true }
protocol-common = { path = "../protocol/common" }
pelikan-net = { workspace = true, default-features = false }
protocol-common = { path = "../protocol/common", default-features = false }

0 comments on commit 9f50b74

Please sign in to comment.