Skip to content

Commit

Permalink
Cargo: use same max_level_xx values for workspace
Browse files Browse the repository at this point in the history
Starting with rust 1.80, it is not possible to use different features for
different executables in the workspace.
  • Loading branch information
chifflier committed Jul 29, 2024
1 parent 0817585 commit 0b33d50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pcap-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fern = "0.6"
lazy_static = "1.2"
libpcap-analyzer = { version="0.1.0", path="../libpcap-analyzer" }
libpcap-tools = { version="0.1.0", path="../libpcap-tools" }
log = { version = "0.4", features = ["max_level_trace", "release_max_level_warn"] }
log = { version = "0.4" }
pcap-parser = "0.15"
rustyline = "13.0"
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion pcap-rewrite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ doc = false
csv = "1.1.6"
clap = { version = "4.4", features = ["cargo", "derive"] }
libpcap-tools = { version="0.1.0", path="../libpcap-tools" }
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
log = { version = "0.4" }
flate2 = { version = "1.0", features = ["zlib"], default-features = false }
lz4 = "1.23"
pnet_packet = "0.34"
Expand Down
2 changes: 1 addition & 1 deletion test-analyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ flate2 = { version = "1.0", features = ["zlib"], default-features = false }
explugin-example = { path="../explugin-example" }
libpcap-analyzer = { path="../libpcap-analyzer" }
libpcap-tools = { path="../libpcap-tools" }
log = { version = "0.4", features = ["max_level_trace", "release_max_level_warn"] }
log = { version = "0.4" }
lz4 = "1.23"
serde_json = "1.0"
simplelog = { version="0.12", default-features = false }
Expand Down

0 comments on commit 0b33d50

Please sign in to comment.