-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "jibri-pod-controller"
description = "Detaches Jibri pods from their Deployment when they start recording or livestreaming, and cleans them up when they finish."
version = "0.1.0"
edition = "2021"
authors = ["Jasper Hugo <jasper@avstack.io>"]
license = "MIT/Apache-2.0"
[dependencies]
anyhow = { version = "1", default-features = false, features = ["std"] }
futures = { version = "0.3", default-features = false }
hyper = { version = "0.14", default-features = false, features = [
"client",
"http1",
"http2",
"server",
"stream",
"runtime",
"tcp",
] }
k8s-openapi = { version = "0.13", default-features = false }
kube = { version = "0.64", default-features = false, features = ["openssl-tls", "client"] }
kube-leader-election = { version = "0.4", default-features = false }
once_cell = { version = "1", default-features = false }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["std"] }
tokio = { version = "1", default-features = false, features = [
"rt-multi-thread",
"macros",
"parking_lot",
"signal",
] }
tracing = { version = "0.1", default-features = false, features = ["attributes", "std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
"parking_lot",
"registry",
"smallvec",
"tracing-log",
] }
[features]
default = ["k8s_v1_21"]
k8s_v1_22 = ["k8s-openapi/v1_22"]
k8s_v1_21 = ["k8s-openapi/v1_21"]
k8s_v1_20 = ["k8s-openapi/v1_20"]
k8s_v1_19 = ["k8s-openapi/v1_19"]
k8s_v1_18 = ["k8s-openapi/v1_18"]