-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 1012 Bytes
/
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
[package]
name = "koordinator"
version = "0.1.0"
edition = "2021"
authors = ["Kai Burjack <kai.burjack@hbt.de>"]
description = "Kubernetes container lifecycle coordinator"
license = "MIT"
repository = "https://github.com/HBTGmbH/koordinator"
homepage = "https://github.com/HBTGmbH/koordinator"
[[bin]]
name = "koordinator"
path = "src/koordinator.rs"
[[bin]]
name = "copy"
path = "src/copy.rs"
[dependencies]
libc = "0.2"
kube = { version = "0.93", default-features = false, features = ["client", "runtime", "rustls-tls"] }
k8s-openapi = { version = "0.22", features = ["v1_29"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
duration-str = { version = "0.7", default-features = false, features = ["serde"] }
[profile.min-size-rel]
inherits = "release"
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"