-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathhawk.toml
More file actions
39 lines (29 loc) · 1.11 KB
/
Copy pathhawk.toml
File metadata and controls
39 lines (29 loc) · 1.11 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
# Closed-world visibility audit for the shipped TraceDecay binary.
# Workspace libraries are internal unless a finding is an intentional
# external SDK surface or generated binding.
[[production]]
package = "tracedecay-cli"
bin = "tracedecay"
reason = "shipped CLI, daemon, MCP, and dashboard binary"
# Restrict rustdoc to crates that actually contain rustdoc examples. Full
# workspace `cargo test --doc` rebuilds every library as rustdoc.
[[doctest]]
package = "tracedecay-contracts"
[[doctest]]
package = "tracedecay-code-index"
[[doctest]]
package = "tracedecay-domain"
[[doctest]]
package = "tracedecay-sessions"
[[doctest]]
package = "tracedecay-store"
# Build-script output lives under Cargo OUT_DIR, so file selectors cannot
# name a stable workspace-relative path. Exclude the include! target modules.
[[exclude]]
crate = "tracedecay_agent_hosts"
module = "agents::plugin_bundle::plugin_bundle_generated"
reason = "build-script generated OUT_DIR plugin bundle manifests"
[[exclude]]
crate = "tracedecay"
module = "dashboard::assets::app_manifest"
reason = "build-script generated OUT_DIR dashboard asset manifest"