Skip to content

Commit

Permalink
Move some common package properties to workspace level
Browse files Browse the repository at this point in the history
  • Loading branch information
marmeladema committed Nov 4, 2024
1 parent c106a75 commit ee9097d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ members = [
]
resolver = "2"

[workspace.package]
authors = [ "Ingvar Stepanyan <[email protected]>" ]
version = "0.7.0"
edition = "2021"

[workspace.dependencies]
backtrace = "0.3"
cfg-if = "1"
Expand Down
6 changes: 3 additions & 3 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
authors = [ "Ingvar Stepanyan <[email protected]>" ]
authors.workspace = true
name = "wirefilter-engine"
version = "0.7.0"
version.workspace = true
description = "An execution engine for Wireshark-like filters"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cloudflare/wirefilter"
keywords = [ "wireshark", "filter", "engine", "parser", "runtime" ]
categories = [ "config", "parser-implementations" ]
edition = "2021"
edition.workspace = true

[lib]
name = "wirefilter"
Expand Down
6 changes: 3 additions & 3 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
authors = [ "Ingvar Stepanyan <[email protected]>" ]
authors.workspace = true
name = "wirefilter-ffi"
version = "0.7.0"
version.workspace = true
description = "FFI bindings for the Wirefilter engine"
publish = false
edition = "2021"
edition.workspace = true

[package.metadata.deb]
assets = [ [ "target/release/libwirefilter_ffi.so", "usr/local/lib/libwirefilter.so", "644" ] ]
Expand Down

0 comments on commit ee9097d

Please sign in to comment.