-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCargo.toml
98 lines (89 loc) · 2.33 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
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
95
96
97
98
[package]
name = "ya-provider"
description = "Yagna Provider Agent reference implementation."
version = "0.3.0"
authors = ["Golem Factory <[email protected]>"]
edition = "2018"
[lib]
path = "src/lib.rs"
[[bin]]
name = "ya-provider"
path = "src/main.rs"
[dependencies]
ya-agreement-utils = { workspace = true }
ya-manifest-utils.workspace = true
ya-client = { workspace = true, features = ['cli'] }
ya-client-model.workspace = true
ya-compile-time-utils.workspace = true
ya-core-model = { workspace = true, features = ['activity', 'payment'] }
ya-file-logging.workspace = true
ya-utils-actix.workspace = true
ya-utils-cli.workspace = true
ya-utils-path.workspace = true
ya-utils-process = { workspace = true, features = ['lock'] }
ya-std-utils.workspace = true
golem-certificate = "0.1.1"
actix = { version = "0.13", default-features = false }
actix-rt = "2.7"
actix_derive = "0.6"
anyhow = "1.0"
backoff = "0.2.1"
bigdecimal = "0.2"
bytesize = "1.0.1"
chrono = { version = "0.4", features = ["serde"] }
derive_more = { workspace = true }
dialoguer = "0.5.0"
directories = "2.0.2"
dotenv = "0.15.0"
futures = "0.3"
futures-util = "0.3.4"
hex = { workspace = true }
humantime = "2.0.0"
itertools = "0.10"
lazy_static = "1.4.0"
libc = "0.2"
log = "0.4"
log-derive = "0.4"
notify = "4.0.15"
num_cpus = "1.13.0"
num-traits = "0.2.14"
openssl.workspace = true
path-clean = "0.1.0"
regex = "1.5"
semver = { version = "0.11", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shared_child = "0.3.4"
signal-hook = "0.3"
structopt = "0.3.20"
strum = { workspace = true }
strum_macros = "0.24"
sys-info = "0.8.0"
thiserror = "1.0.14"
tokio = { version = "1", features = ["macros", "process", "signal"] }
tokio-stream = { version = "0.1.6", features = ["sync"] }
url = "2.1.1"
walkdir = "2.3.1"
yansi = "0.5.0"
[target.'cfg(target_family = "unix")'.dependencies]
nix = "0.22.0"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.8", features = ["fileapi"] }
[dev-dependencies]
assert_cmd = "2.0"
base64 = "0.13"
chrono = "0.4"
convert_case = "0.6"
env_logger = "0.11"
hex = "0.4"
test-case = "2.1"
predicates = "2.1"
serial_test = "0.9"
shlex = "1.1"
tempdir = "0.3"
tempfile = "3.5.0"
pretty_assertions = "1.3"
ya-manifest-test-utils.workspace = true
ya-framework-basic.workspace = true
[lints]
workspace = true