-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (57 loc) · 2.18 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (57 loc) · 2.18 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
[workspace]
resolver = "2"
members = [
"bench/harness",
"bench/rig",
"bench/lanes/ort-embed",
"bench/lanes/wrap-embed",
"bench/lanes/llama",
"bench/lanes/llama-inproc",
"bench/lanes/mlx",
"bench/lanes/burn",
"bench/spikes/unified-rt",
"bench/lanes/candle-embed",
"crates/synapse-core",
"crates/synapse-engine-ort",
"crates/synapse-engine-owned",
"crates/synapse-engine-cuda",
"crates/synapse-engine-owned/owned-decode-worker",
"crates/synapse-module",
"crates/synapse-opctl",
"crates/synapse-worker-llama",
"crates/synapse-worker-cuda",
"crates/synapse-worker-mlx",
"crates/synapse-worker-ane",
"crates/synapse-worker-decode",
]
[workspace.package]
edition = "2021"
rust-version = "1.85"
license = "MIT"
[workspace.dependencies]
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
# default-features minus esaxx_fast: esaxx-rs hardcodes a static MSVC CRT in
# its C++ build, which can never link against llama.cpp's dynamic-CRT objects
# on Windows. esaxx only accelerates the unigram TRAINER — Synapse never
# trains tokenizers, so the pure-Rust fallback path is not even exercised.
tokenizers = { version = "0.21", default-features = false, features = ["progressbar", "onig"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
httpdate = "1"
url = "2"
hex = "0.4"
rusqlite = { version = "0.32", features = ["bundled"] }
sha2 = "0.10"
thiserror = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "process"] }
subc-client-rs = { path = "../subconscious/crates/subc-client-rs" }
subc-core = { path = "../subconscious/crates/subc-core" }
subc-protocol = { path = "../subconscious/crates/subc-protocol" }
subc-transport = { path = "../subconscious/crates/subc-transport" }
cortexkit-lease = { path = "../commons/crates/cortexkit-lease" }
cortexkit-store = { path = "../commons/crates/cortexkit-store" }
cortexkit-store-types = { path = "../commons/crates/cortexkit-store-types" }
cortexkit-log = { path = "../commons/crates/cortexkit-log" }
tracing = "0.1"