Skip to content
Merged
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
459 changes: 458 additions & 1 deletion Cargo.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ unstable_session_usage = []
unstable_message_id = []
unstable_boolean_config = []

# Emit `tracing::warn!` events when `VecSkipError` drops a malformed list
# entry during deserialization. When disabled (the default), the inspector
# hook compiles down to serde_with's built-in no-op and has zero runtime cost.
tracing = ["dep:tracing"]

[[bin]]
name = "generate"
path = "src/bin/generate.rs"
Expand All @@ -55,7 +60,9 @@ derive_more = { version = "2", features = ["from", "display"] }
schemars = { version = "1" }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1", features = ["raw_value"] }
serde_with = { version = "3.18.0", features = ["json", "schemars_1"] }
strum = { version = "0.28", features = ["derive"] }
tracing = { version = "0.1", default-features = false, optional = true }

[lints.rust]
future_incompatible = { level = "warn", priority = -1 }
Expand Down
5 changes: 5 additions & 0 deletions clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
allowed-duplicate-crates = [
"hashbrown",
"indexmap",
"schemars",
]
323 changes: 214 additions & 109 deletions src/agent.rs

Large diffs are not rendered by default.

Loading
Loading