You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+49-35Lines changed: 49 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,33 +31,28 @@ The audit tool finds the problems. The type system prevents them at compile time
31
31
32
32
## cargo-capsec — Static Capability Audit
33
33
34
-
Scans Rust source for ambient authority (filesystem, network, env, process) and reports what your code — and your dependencies — can do to the outside world. Zero config, zero code changes.
34
+
Scans Rust source for ambient authority (filesystem, network, env, process, FFI) and reports what your code — and your dependencies — can do to the outside world. Zero config, zero code changes.
# which of YOUR functions inherit authority from dependencies
53
-
cargo capsec audit --include-deps
48
+
Runs a full audit, generates a `.capsec.toml` that suppresses all existing findings, saves a baseline, and optionally sets up CI. You immediately start catching *new* ambient authority without drowning in legacy noise.
54
49
55
-
# Control dependency depth (default: 1 = direct deps only)
56
-
cargo capsec audit --include-deps --dep-depth 3 # up to 3 hops
0 commit comments