-
Notifications
You must be signed in to change notification settings - Fork 78
/
Cargo.toml
35 lines (30 loc) · 1.01 KB
/
Cargo.toml
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
[package]
name = "aicirt"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aici_abi = { path = "../controllers/aici_abi" }
aici_native = { path = "../controllers/aici_native" }
anyhow = "1.0.75"
base64 = "0.21.4"
clap = { version = "4.4.4", features = ["derive"] }
hex = "0.4.3"
libc = "0.2.148"
log = "0.4.20"
rayon = "1.7.0"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = { version = "1.0.108", features = ["preserve_order"] }
sha2 = "0.10.7"
wasmtime = { version = "16.0.0", default-features = false, features = ["cranelift", "parallel-compilation", "pooling-allocator"] }
tokenizers = { version = "0.15.0", features = ["http"] }
thread-priority = "0.15.1"
cap = "0.1.2"
bincode = "1.3.3"
uuid = { version = "1.6.1", features = ["v4"] }
regex = "1.10.3"
ureq = "2.9.5"
[target.'cfg(target_os = "linux")'.dependencies]
linux-futex = "0.2.0"
[target.'cfg(target_os = "macos")'.dependencies]
ulock-sys = "0.1.0"