rename dirigent_ant to dirigent_anth, binaries to anth_bear/anth_usage

Rename the Claude Code session parser crate from dirigent_ant to
dirigent_anth. Binary targets renamed: ant → anth_bear, ant_usage →
anth_usage. Module claude_usage renamed to anth_usage throughout.
Also normalizes CRLF → LF line endings across touched files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-07 21:59:24 +02:00
parent c62d8daea8
commit d30783845a
+73 -73
View File
@@ -1,73 +1,73 @@
[package] [package]
name = "dirigate" name = "dirigate"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "Dirigate - ACP bridge and mock server for testing and proxying ACP connections" description = "Dirigate - ACP bridge and mock server for testing and proxying ACP connections"
[lib] [lib]
path = "src/lib.rs" path = "src/lib.rs"
[[bin]] [[bin]]
name = "dirigate" name = "dirigate"
path = "src/bin/dirigate.rs" path = "src/bin/dirigate.rs"
[dependencies] [dependencies]
# CLI # CLI
clap = { version = "4", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }
# Serialization # Serialization
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9" serde_yaml = "0.9"
serde_json = "1.0" serde_json = "1.0"
# Async runtime # Async runtime
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] } tokio-stream = { version = "0.1", features = ["sync"] }
async-stream = "0.3" async-stream = "0.3"
# Web server # Web server
axum = "0.8" axum = "0.8"
# HTTP client (for bridge mode) # HTTP client (for bridge mode)
reqwest = { version = "0.12", features = ["json", "stream"] } reqwest = { version = "0.12", features = ["json", "stream"] }
reqwest-eventsource = "0.6" reqwest-eventsource = "0.6"
futures-util = "0.3" futures-util = "0.3"
# UUID generation # UUID generation
uuid = { version = "1.0", features = ["v4", "serde"] } uuid = { version = "1.0", features = ["v4", "serde"] }
# Date/time handling # Date/time handling
chrono = { version = "0.4", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] }
# Error handling # Error handling
anyhow = "1.0" anyhow = "1.0"
thiserror = "1.0" thiserror = "1.0"
# Logging # Logging
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Random number generation # Random number generation
rand = "0.8" rand = "0.8"
rand_chacha = "0.3" rand_chacha = "0.3"
# CLI formatting # CLI formatting
owo-colors = "4" owo-colors = "4"
tabled = "0.16" tabled = "0.16"
shell-words = "1.1" shell-words = "1.1"
# Internal dependencies # Internal dependencies
dirigent_protocol = { workspace = true } dirigent_protocol = { workspace = true }
dirigent_core = { workspace = true, features = ["server"] } dirigent_core = { workspace = true, features = ["server"] }
dirigent_tools = { workspace = true } dirigent_tools = { workspace = true }
opencode_client = { workspace = true, optional = true } opencode_client = { workspace = true, optional = true }
[dev-dependencies] [dev-dependencies]
dirigent_acp_api = { workspace = true } dirigent_acp_api = { workspace = true }
[features] [features]
default = [] default = []
ingest = ["dep:opencode_client"] ingest = ["dep:opencode_client"]
[lints] [lints]
workspace = true workspace = true