-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.66 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (52 loc) · 1.66 KB
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
45
46
47
48
49
50
51
52
53
54
55
# =============================================================================
# rust — Coverage-Guided Semantic Fuzzer (workspace)
# =============================================================================
# Four crates:
# crates/fuzzcommon — shared types (FuzzJob, FuzzState, Bitmap, ...)
# crates/arcp-stubs — thin stub of the agent SDK surface used by this demo
# (see crate-level comment: replace with real `arcp`
# APIs as they are published)
# crates/runtime — the `fuzz.explore` agent host
# crates/runner — POST /run HTTP harness server
# crates/client — ratatui TUI dashboard
#
# Plus an out-of-workspace example: examples/target_cbor (the buggy CBOR-ish
# decoder built standalone with `cargo build`).
# -----------------------------------------------------------------------------
[workspace]
resolver = "2"
members = [
"crates/fuzzcommon",
"crates/arcp-stubs",
"crates/runtime",
"crates/runner",
"crates/client",
"examples/target_cbor",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
publish = false
license = "MIT"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
axum = "0.7"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
ratatui = "0.28"
crossterm = "0.28"
anyhow = "1"
thiserror = "1"
sha2 = "0.10"
base64 = "0.22"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rand = "0.8"
async-trait = "0.1"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true