-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.18 KB
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
[package]
name = "postgres-topology-operator"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
kube = { version = "0.95.0", default-features = false, features = ["client", "rustls-tls", "runtime", "derive", "ws"] }
kube-runtime = {version = "0.95.0", default-features = false, features = ["unstable-runtime-stream-control"] }
k8s-openapi = { version = "0.23.0", features = ["v1_29", "schemars"] }
serde = "1"
serde_json = "1.0"
schemars = "0.8"
thiserror = "1"
futures = "0.3"
log = "0.4"
pretty_env_logger = "0.5"
anyhow = { version = "1.0", features = ["backtrace", "std"] }
serde_yaml = "0.9"
clap = { version = "4.4", features = ["env", "derive"] }
tokio-postgres = "0.7.10"
tokio-postgres-rustls = "0.10.0"
base64 = "0.21"
hmac = "0.12"
md-5 = "0.10"
rand = "0.8"
sha2 = "0.10"
stringprep = "0.1"
rustls = "0.21.7"
webpki-roots = "0.25.2"
itertools = "0.12"
base16ct = { version = "0.2.0", features = ["alloc", "std"] }
[build-dependencies]
vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }