Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ fastembed = { version = "4", default-features = false }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
serde_json_lenient = { version = "0.2", features = ["preserve_order"] }
serde_json_lenient = { version = "0.2", features = ["preserve_order", "raw_value"] }
toml = "0.8"
toml_edit = "0.22"

# Error handling
thiserror = "2"
Expand Down
5 changes: 3 additions & 2 deletions crates/icm-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ opensearch = ["icm-store/opensearch", "icm-mcp/opensearch"]
http-api = ["dep:axum", "dep:tokio"]
# Full web dashboard (SvelteKit SPA + auth). Pulls everything `http-api`
# does plus the embedded-assets stack.
web = ["http-api", "dep:tower-http", "dep:rust-embed", "dep:mime_guess", "dep:getrandom"]
web = ["http-api", "dep:tower-http", "dep:rust-embed", "dep:mime_guess"]
# Benchmark suite (`icm bench*`): ~30 KB of synthetic fixtures + an agent
# harness that shells out to `claude`. Dev/CI tooling, not shipped in the
# production binary (audit finding).
Expand All @@ -67,6 +67,7 @@ directories = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
toml_edit = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Optional, only enabled by the `vendored-openssl` feature (see
Expand All @@ -87,7 +88,7 @@ tokio = { workspace = true, optional = true }
tower-http = { workspace = true, optional = true }
rust-embed = { workspace = true, optional = true }
mime_guess = { workspace = true, optional = true }
getrandom = { workspace = true, optional = true }
getrandom = { workspace = true }
serde_json_lenient = { workspace = true }
walkdir = { workspace = true }

Expand Down
Loading
Loading