-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (83 loc) · 2.5 KB
/
Cargo.toml
File metadata and controls
94 lines (83 loc) · 2.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
resolver = "2"
members = [
"crates/core",
"crates/wire",
"crates/crypto",
"crates/net",
"crates/app",
"crates/cli",
"crates/node",
"crates/runtime",
"crates/ggml",
"crates/model-store",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.88"
license = "Apache-2.0"
authors = ["IntelNav Project"]
homepage = "https://intelnav.net"
repository = "https://github.com/intelnav/intelnav"
[workspace.dependencies]
# core async + error
tokio = { version = "1", features = ["full"] }
futures = "0.3"
futures-util = "0.3"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# serde + codecs
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ciborium = "0.2"
bytes = "1"
hex = { version = "0.4", features = ["serde"] }
# crypto
ed25519-dalek = { version = "2", features = ["rand_core", "serde"] }
x25519-dalek = { version = "2", features = ["static_secrets", "serde"] }
aes-gcm = "0.10"
blake3 = "1"
bs58 = "0.5"
sha2 = "0.10"
rand = "0.8"
rand_core = { version = "0.6", features = ["std"] }
# http (registry coordinator + chunk server + model downloader client)
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
axum = { version = "0.7", features = ["json", "macros"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# tui + cli
clap = { version = "4", features = ["derive", "env", "color"] }
ratatui = "0.29"
crossterm = "0.28"
# config & paths
directories = "5"
toml = "0.8"
mdns-sd = "0.11"
async-trait = "0.1"
if-addrs = "0.13"
async-stream = "0.3"
# inference runtime
tokenizers = { version = "0.21", default-features = false, features = ["onig"] }
sysinfo = "0.38"
half = "2"
# internal
intelnav-core = { path = "crates/core" }
intelnav-wire = { path = "crates/wire" }
intelnav-crypto = { path = "crates/crypto" }
intelnav-net = { path = "crates/net" }
intelnav-app = { path = "crates/app" }
intelnav-runtime = { path = "crates/runtime" }
intelnav-model-store = { path = "crates/model-store", features = ["serve"] }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"
panic = "abort"
[profile.dev]
opt-level = 0
debug = 1