-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
70 lines (63 loc) · 1.67 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
[package]
name = "restate-operator"
version = "1.2.0"
authors = ["restate.dev"]
edition = "2021"
rust-version = "1.75"
license = "MIT"
repository = "https://github.com/restatedev/restate-operator"
description = "Restate makes distributed applications easy!"
[[bin]]
doc = false
name = "restate-operator"
path = "src/main.rs"
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[[bin]]
doc = false
name = "schemagen"
path = "src/schemagen.rs"
[lib]
name = "restate_operator"
path = "src/lib.rs"
[features]
default = []
telemetry = ["tonic", "opentelemetry-otlp"]
[dependencies]
actix-web = "4.4.0"
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
k8s-openapi = { version = "0.21.0", features = ["latest", "schemars"] }
kube = { version = "0.88.1", features = [
"runtime",
"client",
"derive",
"unstable-runtime",
] }
schemars = { version = "0.8.12", features = ["chrono"] }
serde = { version = "1.0.185", features = ["derive"] }
serde-hashkey = "0.4.5"
serde_json = "1.0.105"
serde_yaml = "0.9.25"
prometheus = "0.13.3"
chrono = { version = "0.4.26", features = ["serde"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
tracing-opentelemetry = "0.20.0"
opentelemetry = { version = "0.20.0", features = ["trace", "rt-tokio"] }
opentelemetry-otlp = { version = "0.13.0", features = [
"tokio",
], optional = true }
tonic = { version = "0.9", optional = true }
thiserror = "1.0.47"
anyhow = "1.0.75"
clap = { version = "4.1", features = ["derive", "env"] }
regex = "1.10.4"
sha2 = "0.10.8"
[dev-dependencies]
assert-json-diff = "2.0.2"
http = "0.2.9"
hyper = "0.14.27"
tower-test = "0.4.0"