-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.58 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "cookie"
version = "0.1.0"
description = "An example generated using the hello-world template"
license = "MIT"
edition = "2024"
[dependencies]
color-eyre = "0.6.3"
crossterm = { version = "0.29", features = ["event-stream", "osc52"] }
ratatui = "0.29.0"
tokio = { version = "1.45.1", features = ["full"] }
futures-util = "0.3.31"
serde = { version = "1.0.219", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0.140"
async-trait = "0.1.88"
reqwest = { version = "0.12.15", default-features = false, features = ["json", "rustls-tls-native-roots", "stream"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }
tracing-appender = "0.2.3"
textwrap = {git = "https://github.com/mgeisler/textwrap", rev = "77a634f72506cc8ec26b499949a500fd6a9d5cdc"}
unicode-width = "0.2.0"
unicode-segmentation = "1.12.0"
dirs = "6.0.0"
toml = "0.9.2"
chrono = { version = "0.4.41", features = ["serde"]}
uuid = { version = "1", features = ["v4"] }
reqwest-eventsource = "0.6.0"
tokio-stream = "0.1.17"
ansi-to-tui = "7.0.0"
itertools = "0.14.0"
pulldown-cmark = "0.13.0"
syntect = "5.2.0"
prost = "0.14.1"
prost-types = "0.14.1"
strum = { version = "0.27", features = ["derive"] }
rusqlite = { version = "0.37.0", features = ["bundled"] }
tempfile = "3.21.0"
[dev-dependencies]
pretty_assertions = "1.4.1"
rstest = "0.26.1"
insta = "1.43.1"
indoc = "2.0.6"
cargo-husky = { version = "1", default-features = false, features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"] }
[build-dependencies]
prost-build = "0.14.1"