-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 834 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 834 Bytes
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
[package]
name = "looper"
version = "0.1.0"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
thiserror = "1.0"
futures = "0.3"
anyhow = "1.0.102"
dotenv = "0.15.0"
async-openai = { version = "0.33.0", features = ["chat-completion", "responses"]}
async-anthropic = { git = "https://github.com/danwritecode/async-anthropic" }
async-trait = "0.1.89"
async-recursion = "1.1.1"
gemini-rust = "1.7"
uuid = { version = "1", features = ["v4"] }
tera = "1"
indicatif = "0.18.4"
console = "0.16.2"
derive_builder = "0.20.2"
[dev-dependencies]
cargo-husky = { version = "1.5.0", default-features = false, features = ["prepush-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"] }
[[example]]
name = "cli"
path = "examples/cli.rs"