Skip to content

Commit

Permalink
Consistently depend on wirefilter engine from the workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
marmeladema committed Dec 18, 2024
1 parent 0924d81 commit a9bff03
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ resolver = "2"
[workspace.package]
authors = [ "Ingvar Stepanyan <[email protected]>" ]
version = "0.7.0"
publish = true
edition = "2021"

[workspace.dependencies]
Expand Down
1 change: 1 addition & 0 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ license = "MIT"
repository = "https://github.com/cloudflare/wirefilter"
keywords = [ "wireshark", "filter", "engine", "parser", "runtime" ]
categories = [ "config", "parser-implementations" ]
publish.workspace = true
edition.workspace = true

[lib]
Expand Down
4 changes: 1 addition & 3 deletions fuzz/bytes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ edition = "2021"

[dependencies]
afl = "0.15"

[dependencies.wirefilter-engine]
path = "../../engine"
wirefilter.workspace = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
4 changes: 1 addition & 3 deletions fuzz/map-keys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ edition = "2021"

[dependencies]
afl = "0.15"

[dependencies.wirefilter-engine]
path = "../../engine"
wirefilter.workspace = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
4 changes: 1 addition & 3 deletions fuzz/raw-string/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ edition = "2021"

[dependencies]
afl = "0.15"

[dependencies.wirefilter-engine]
path = "../../engine"
wirefilter.workspace = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
4 changes: 2 additions & 2 deletions wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ doctest = false
[dependencies]
getrandom = { version = "0.2", features = ["js"] }
js-sys = "0.3.41"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wirefilter-engine = { path = "../engine", default-features = false }
serde-wasm-bindgen = "0.5.0"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wirefilter.workspace = true

0 comments on commit a9bff03

Please sign in to comment.