-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (51 loc) · 2.06 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (51 loc) · 2.06 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
50
51
52
53
54
55
[workspace]
members = ["rust/*"]
resolver = "2"
[workspace.package]
version = "0.0.0-dev"
authors = ["Stackable GmbH <info@stackable.tech>"]
license = "OSL-3.0"
edition = "2024"
repository = "https://github.com/stackabletech/opa-operator"
[workspace.dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.3", features = ["webhook"] }
krb5 = { git = "https://github.com/stackabletech/krb5-rs.git", tag = "v0.1.0" }
anyhow = "1.0"
axum = "0.8"
base64 = "0.22"
built = { version = "0.8", features = ["chrono", "git2"] }
byteorder = "1.5"
clap = "4.6"
const_format = "0.2"
flate2 = "1.0"
fnv = "1.0"
futures = { version = "0.3" }
hyper = "1.4"
indoc = "2.0"
ldap3 = { version = "0.12", features = ["gssapi", "tls"] }
moka = { version = "0.12", features = ["future"] }
native-tls = "0.2.12"
pin-project = "1.1"
# `default-features = false` drops reqwest 0.13's `default-tls = ["rustls"]`; we select
# `native-tls` (OpenSSL) to stay on the same TLS stack as ldap3 (see utils/tls.rs). The
# rustls platform verifier eagerly errors ("No CA certificates were loaded from the
# system") when the container has no system CA bundle; OpenSSL loads certs lazily instead.
# charset/http2/system-proxy are reqwest 0.13 defaults re-added here.
# TODO(@maltesander): We should remove these and "native-tls" and add ca-certificates to the docker images?
reqwest = { version = "0.13", default-features = false, features = ["json", "form", "query", "native-tls", "charset", "http2", "system-proxy"] }
rustls = "0.23"
rustls-pki-types = "1.13"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
snafu = "0.9"
strum = { version = "0.28", features = ["derive"] }
tar = "0.4"
tokio = { version = "1.52", features = ["full"] }
tracing = "0.1"
url = "2.5"
uuid = "1.10"
wiremock = "0.6"
[patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }