-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1.13 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
35
36
37
38
39
40
41
42
43
[package]
name = "airs"
version = "0.1.0"
authors = ["[email protected]"]
edition = "2021"
[dependencies]
clap = { workspace = true }
loader = { workspace = true }
tokio = { workspace = true }
models = { workspace = true }
server = { workspace = true }
[workspace]
members = [
"crate/server",
"crate/actors",
"crate/models",
"crate/loader",
"crate/shared",
"crate/csrf",
]
[workspace.dependencies]
futures = "0.3.27"
futures-util = "0.3.27"
tokio = { version = "1.27.0", features = ["full", "tracing"] }
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
thiserror = "1.0.40"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "serde"] }
rust-bert = { git = "https://github.com/guillaume-be/rust-bert", rev = "ba57704" }
tch = "0.13.0"
diffusers = "0.3.0"
torch-sys = "0.13"
indicatif = {version = "0.17.3", features = ["rayon"]}
clap = { version = "4.0.19", features = ["derive"] }
shared = { path = "./crate/shared" }
actors = { path = "./crate/actors" }
models = { path = "./crate/models" }
loader = { path = "./crate/loader" }
server = { path = "./crate/server" }
csrf = { path = "./crate/csrf" }