forked from cloudflare/wirefilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 830 Bytes
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"engine",
"ffi",
"fuzz/bytes",
"fuzz/raw-string",
"fuzz/map-keys",
"wasm",
]
resolver = "2"
[workspace.package]
authors = [ "Ingvar Stepanyan <me@rreverser.com>" ]
version = "0.7.0"
publish = true
edition = "2024"
[workspace.dependencies]
backtrace = "0.3"
cfg-if = "1"
cidr = { version = "0.2", features = ["serde"] }
criterion = "0.5"
dyn-clone = "1.0.20"
fnv = "1.0.6"
getrandom = { version = "0.3" }
indoc = "2"
libc = "0.2.42"
memmem = "0.1.1"
num_enum = "0.7"
rand = "0.9"
regex-automata = { version = "0.4.9" }
serde = { version = "1.0.113", features = [ "derive" ] }
serde_json = "1.0.56"
sliceslice = "0.4.3"
thiserror = "1.0"
wildcard = "0.2.0"
wirefilter = { path = "engine", package = "wirefilter-engine" }
[profile.release]
panic = "unwind"
lto = true
[profile.dev]
panic = "unwind"