-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (51 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "ya-runtime-ai"
version = "0.2.6"
edition = "2021"
[workspace]
members = [
"gpu-detection",
"runtimes/dummy",
]
[dependencies]
ya-gsb-http-proxy = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49" }
ya-core-model = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49", features = ["activity", "appkey"] }
ya-runtime-api = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49" }
ya-utils-process = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49" }
ya-service-bus = "0.7.3"
ya-client-model = "0.7"
ya-agreement-utils = "0.5"
ya-transfer = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49" }
ya-counters = { git = "https://github.com/golemfactory/yagna.git", rev = "pre-rel-v0.16.0-preview.ai.49" }
gpu-detection = { path = "gpu-detection" }
actix = "0.13"
actix-rt = "2"
async-trait = "0.1"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4", features = ["derive", "env"] }
dotenv = "0.15"
anyhow = "1.0"
env_logger = "0.11"
yansi = "1.0"
chrono = "0.4.34"
tokio = { version = "1.32", features = ["macros", "signal"] }
tokio-stream = { version = "0.1", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
flexi_logger = { version = "0.28", features = ["colors"] }
regex = "1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
async-stream = "0.3"
http = "1.1"
bytes = "1.5"
humantime = "2.1"
humantime-serde = "1.1"
thiserror = "1.0.58"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
test-case = "3.3"
[build-dependencies]
static_vcruntime = "2.0"