organize cargo deps
This commit is contained in:
parent
1cf4f504c0
commit
3625764ca5
1 changed files with 23 additions and 14 deletions
37
Cargo.toml
37
Cargo.toml
|
|
@ -19,51 +19,60 @@ version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
figment = { version = "0.10", features = ["env"] }
|
anyhow = "1"
|
||||||
env_logger = "0.11"
|
|
||||||
uuid = { version = "1", features = ["v4"] }
|
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
|
figment = { version = "0.10", features = ["env"] }
|
||||||
|
dirs = "6"
|
||||||
|
env_logger = "0.11"
|
||||||
|
log = "0.4"
|
||||||
|
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
json5 = "1.3"
|
||||||
|
|
||||||
crossterm = { version = "0.29", features = ["event-stream"] }
|
crossterm = { version = "0.29", features = ["event-stream"] }
|
||||||
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
|
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
|
||||||
tui-markdown = "0.3"
|
tui-markdown = "0.3"
|
||||||
tui-textarea = { version = "0.10.2", package = "tui-textarea-2" }
|
tui-textarea = { version = "0.10.2", package = "tui-textarea-2" }
|
||||||
json5 = "1.3"
|
|
||||||
|
uuid = { version = "1", features = ["v4"] }
|
||||||
bincode = "1"
|
bincode = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
glob = "0.3"
|
glob = "0.3"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
redb = "2"
|
|
||||||
rkyv = { version = "0.7", features = ["validation", "std"] }
|
|
||||||
memchr = "2"
|
memchr = "2"
|
||||||
memmap2 = "0.9"
|
memmap2 = "0.9"
|
||||||
rayon = "1"
|
|
||||||
peg = "0.8"
|
peg = "0.8"
|
||||||
paste = "1"
|
paste = "1"
|
||||||
|
|
||||||
|
redb = "2"
|
||||||
|
rkyv = { version = "0.7", features = ["validation", "std"] }
|
||||||
|
|
||||||
|
rayon = "1"
|
||||||
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon"] }
|
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon"] }
|
||||||
|
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
tokio-util = { version = "0.7", features = ["compat"] }
|
tokio-util = { version = "0.7", features = ["compat"] }
|
||||||
tokio-scoped = "0.2.0"
|
tokio-scoped = "0.2.0"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
capnp = "0.25"
|
capnp = "0.25"
|
||||||
capnp-rpc = "0.25"
|
capnp-rpc = "0.25"
|
||||||
|
|
||||||
|
tiktoken-rs = "0.9.1"
|
||||||
|
skillratings = "0.28"
|
||||||
|
|
||||||
http = "1"
|
http = "1"
|
||||||
hyper = { version = "1", features = ["client", "http1"] }
|
hyper = { version = "1", features = ["client", "http1"] }
|
||||||
hyper-util = { version = "0.1", features = ["tokio"], default-features = false }
|
hyper-util = { version = "0.1", features = ["tokio"], default-features = false }
|
||||||
http-body-util = "0.1"
|
http-body-util = "0.1"
|
||||||
|
bytes = "1"
|
||||||
|
base64 = "0.22"
|
||||||
|
|
||||||
rustls = "0.23"
|
rustls = "0.23"
|
||||||
tokio-rustls = "0.26"
|
tokio-rustls = "0.26"
|
||||||
rustls-native-certs = "0.8"
|
rustls-native-certs = "0.8"
|
||||||
serde_urlencoded = "0.7"
|
serde_urlencoded = "0.7"
|
||||||
bytes = "1"
|
|
||||||
anyhow = "1"
|
|
||||||
base64 = "0.22"
|
|
||||||
dirs = "6"
|
|
||||||
tiktoken-rs = "0.9.1"
|
|
||||||
log = "0.4"
|
|
||||||
skillratings = "0.28"
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
capnpc = "0.25"
|
capnpc = "0.25"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue