-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (43 loc) · 1.1 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
[package]
name = "authentik-operator"
version = "0.2.5"
edition = "2021"
authors = ["Dany Sluijk <me@dany.dev>"]
default-run = "akcontroller"
[[bin]]
doc = false
name = "akcontroller"
path = "src/main.rs"
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[lib]
name = "akcontroller"
path = "src/lib.rs"
[profile.release]
lto = true
codegen-units = 1
[dependencies]
actix-web = "4.1.0"
futures = "0.3.21"
tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] }
k8s-openapi = { version = "0.16.0", features = ["v1_24"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
chrono = { version = "0.4.19", features = ["serde"] }
schemars = { version = "0.8.8", features = ["chrono"] }
serde_yaml = "0.9.14"
thiserror = "1.0.31"
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.14", features = ["json", "env-filter"] }
rand = "0.8.5"
async-trait = "0.1.56"
anyhow = "1.0.58"
reqwest = { version = "0.11.11", features = ["json"] }
lazy_static = "1.4.0"
regex = "1.6.0"
base64 = "0.20.0"
[dependencies.kube]
features = ["runtime", "client", "derive"]
version = "0.76.0"