-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
76 lines (72 loc) · 2.52 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
[workspace]
resolver = "2"
members = [
"packages/google-agones-crds",
"packages/google-agones-sdk/bindings/rust",
"packages/google-open-match-sdk/bindings/rust",
"packages/shulker-addon-matchmaking",
"packages/shulker-crds",
"packages/shulker-kube-utils",
"packages/shulker-operator",
"packages/shulker-sdk/bindings/rust",
"packages/shulker-utils",
]
[workspace.package]
version = "0.11.0"
authors = ["Jérémy Levilain <[email protected]>"]
edition = "2021"
rust-version = "1.80.1"
publish = false
[workspace.dependencies]
# In workspace
google-agones-crds = { path = "./packages/google-agones-crds" }
google-agones-sdk = { path = "./packages/google-agones-sdk/bindings/rust" }
google-open-match-sdk = { path = "./packages/google-open-match-sdk/bindings/rust" }
shulker-crds = { path = "./packages/shulker-crds" }
shulker-kube-utils = { path = "./packages/shulker-kube-utils" }
shulker-sdk = { path = "./packages/shulker-sdk/bindings/rust" }
shulker-utils = { path = "./packages/shulker-utils" }
# External
anyhow = "1.0.86"
async-trait = "0.1.81"
axum = "0.7.5"
base64 = "0.22.1"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.16", features = ["derive", "env"] }
const_format = "0.2.32"
futures = "0.3.30"
futures-core = "0.3.30"
hostname = "0.4.0"
http = "1.1.0"
hyper = "1.4.1"
insta = { version = "1.39.0", features = ["yaml", "toml", "redactions"] }
k8s-openapi = { version = "0.22.0", features = ["latest", "schemars"] }
kube = { version = "0.94.0", features = ["runtime", "client", "derive" ] }
lazy_static = "1.5.0"
paste = "1.0.15"
pbjson-types = "0.7.0"
prometheus = "0.13.4"
prost = "0.13.1"
rand = "0.8.5"
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls-native-roots"] }
schemars = { version = "0.8.21", features = ["chrono"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
serde-xml-rs = "0.6.0"
serde_yaml = "0.9.34"
strum = { version = "0.26.3", features = ["derive"] }
tempfile = "3.12.0"
thiserror = "1.0.63"
tonic = { version = "0.12.1", features = ["gzip", "tls"] }
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.15"
tokio-util = "0.7.11"
toml = "0.8.19"
tower = { version = "0.5.0", features = ["util"] }
tower-test = "0.4.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
url = "2.5.2"
uuid = { version = "1.10.0", features = ["v4"] }
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }