Set up Cargo workspace with initial crates: - cli: main application entry point with chat streaming tests - config: configuration management - llm/ollama: Ollama client integration with NDJSON support Includes .gitignore for Rust and JetBrains IDEs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
618 B
TOML
23 lines
618 B
TOML
[package]
|
|
name = "code"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
color-eyre = "0.6"
|
|
llm-ollama = { path = "../llm/ollama" }
|
|
config-agent = { package = "config-agent", path = "../config" }
|
|
futures-util = "0.3.31"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
predicates = "3.1"
|
|
httpmock = "0.7"
|
|
tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
|