diff --git a/Cargo.toml b/Cargo.toml index f2639efd..c47ad75f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,7 @@ resolver = "2" [workspace.package] authors = [ "Ingvar Stepanyan " ] version = "0.7.0" +publish = true edition = "2021" [workspace.dependencies] diff --git a/engine/Cargo.toml b/engine/Cargo.toml index b4478bbd..fb3082a6 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -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] diff --git a/fuzz/bytes/Cargo.toml b/fuzz/bytes/Cargo.toml index 0764e793..2ee3ab66 100644 --- a/fuzz/bytes/Cargo.toml +++ b/fuzz/bytes/Cargo.toml @@ -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)'] } diff --git a/fuzz/map-keys/Cargo.toml b/fuzz/map-keys/Cargo.toml index d29aa3d7..99b2fdbd 100644 --- a/fuzz/map-keys/Cargo.toml +++ b/fuzz/map-keys/Cargo.toml @@ -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)'] } diff --git a/fuzz/raw-string/Cargo.toml b/fuzz/raw-string/Cargo.toml index eeadf460..375d6728 100644 --- a/fuzz/raw-string/Cargo.toml +++ b/fuzz/raw-string/Cargo.toml @@ -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)'] } diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 146c391d..ed67b6e7 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -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