forked from golemcloud/golem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
180 lines (176 loc) · 5.28 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
[workspace]
resolver = "2"
members = [
"golem-api-grpc",
"golem-cli",
"golem-client",
"golem-common",
"golem-service-base",
"golem-component-compilation-service",
"golem-component-service-base",
"golem-component-service",
"golem-test-framework",
"golem-shard-manager",
"golem-worker-executor-base",
"golem-worker-executor",
"golem-worker-service-base",
"golem-worker-service",
"integration-tests",
]
exclude = [
"test-components/shopping-cart",
"test-components/write-stdout",
"test-components/blob-store-service",
"test-components/clock-service",
"test-components/clocks",
"test-components/directories",
"test-components/environment-service",
"test-components/failing-component",
"test-components/file-service",
"test-components/file-write-read-delete",
"test-components/flags-service",
"test-components/golem-rust-tests",
"test-components/http-client",
"test-components/http-client-2",
"test-components/interruption",
"test-components/key-value-service",
"test-components/networking",
"test-components/option-service",
"test-components/promise",
"test-components/read-stdin",
"test-components/runtime-service",
"test-components/rust-echo",
"test-components/rust-service",
"test-components/shopping-cart",
"test-components/shopping-cart-resource",
"test-components/stdio-cc",
"test-components/update-test-v1",
"test-components/update-test-v2",
"test-components/update-test-v3",
"test-components/update-test-v4",
"test-components/variant-service",
"test-components/write-stderr",
"test-components/write-stdout",
]
[workspace.dependencies]
anyhow = "1.0.79"
assert2 = "0.3.11"
async-trait = "0.1.77"
aws-config = "1.1.3"
aws-sdk-s3 = "1.13.0"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
bytes = "1.5.0"
cap-std = "2.0.0" # keep in sync with wasmtime
chrono = { version = "0.4.32", features = ["serde"] }
clap = { version = "4.5.4", features = [
"derive",
"suggestions",
"color",
"help",
] }
cli-table = "0.4.7"
console-subscriber = "0.2.0"
ctor = "0.2.6"
dashmap = "5.5.3"
derive_more = "0.99.17"
figment = { version = "0.10.14", features = ["toml", "env"] }
fred = { version = "8.0.0", features = [
"metrics",
"serde-json",
"partial-tracing",
] }
futures = "0.3"
futures-core = "0.3.29"
futures-util = "0.3.29"
golem-wasm-ast = "0.2.2"
golem-wasm-rpc = { version = "0.0.22", default-features = false, features = [
"host",
] }
http = "1.0.0" # keep in sync with wasmtime
http_02 = { package = "http", version = "0.2.11" }
humantime-serde = "1.1.1"
hyper = { version = "1.0.1", features = ["full"] } # keep in sync with wasmtime
iso8601-timestamp = "0.2.16"
itertools = "0.12.1"
k8s-openapi = { version = "0.21.1", features = ["earliest"] }
kube = { version = "0.88.1", features = ["runtime", "derive"] }
kube-derive = "0.88.1"
lazy_static = "1.4.0"
nom = "7.1.3"
openapiv3 = "2.0.0"
opentelemetry = "0.21.0"
opentelemetry-prometheus = "0.14.1"
opentelemetry_sdk = "0.21.2"
poem-openapi = { version = "4.0.0", features = [
"swagger-ui",
"chrono",
"time",
"humantime",
"uuid",
"url",
"websocket",
] }
poem = { version = "2.0.0", features = ["prometheus", "opentelemetry", "test"] }
postgres = "0.19.7"
prometheus = { version = "0.13.3", features = ["process"] }
proptest = "1.4.0"
prost = "0.12.3"
prost-types = "0.12.3"
redis = { version = "0.25.2", features = ["default"] }
regex = "1.10.3"
reqwest = { version = "0.11.27", features = [
"gzip",
"json",
"multipart",
"stream",
] }
rustls = { version = "0.22.2" }
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
serde_yaml = { version = "0.9.33 " }
strum = "0.26.1"
strum_macros = "0.26.1"
tap = "1.0.1"
tempfile = "3.9.0"
testcontainers = { version = "0.15.0", features = ["async-trait", "tokio"] }
testcontainers-modules = { version = "0.3.2", features = ["postgres", "redis"] }
thiserror = "1.0.56"
tokio = { version = "1.0", features = [
"macros",
"rt-multi-thread",
"sync",
"io-std",
"net",
"tracing",
"process",
] }
tokio-postgres = "0.7.10"
tokio-rustls = { version = "0.25.0" }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = "0.7.10"
tonic = "0.10.2"
tonic-reflection = "0.10.2"
tonic-health = "0.10.2"
tracing = { version = "0.1.40", features = ["log"] }
tracing-opentelemetry = "0.22.0"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"fmt",
"std",
"json",
] }
url = "2.5.0"
uuid = { version = "1.7.0", features = ["serde", "v4"] }
warp = "0.3.6"
wasm-wave = "=0.4.0"
wasmtime = { version = "=17.0.0", features = ["component-model"] }
wasmtime-runtime = { version = "=17.0.0" }
wasmtime-wasi = { version = "=17.0.0" }
wasmtime-wasi-http = { version = "=17.0.0" }
webpki-roots = { version = "0.26.0" }
[patch.crates-io]
wasmtime = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-17" }
wasmtime-runtime = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-17" }
wasmtime-wasi = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-17" }
wasmtime-wasi-http = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-17" }