@@ -11,20 +11,27 @@ edition = "2021"
1111repository = " https://github.com/stackabletech/secret-operator"
1212
1313[workspace .dependencies ]
14- stackable-operator = { git = " https://github.com/stackabletech/operator-rs.git" , tag = " stackable-operator-0.105.0 " , features = [" time" , " telemetry" , " versioned" , " webhook" ] }
14+ stackable-operator = { git = " https://github.com/stackabletech/operator-rs.git" , tag = " stackable-operator-0.106.1 " , features = [" time" , " telemetry" , " versioned" , " webhook" ] }
1515krb5 = { git = " https://github.com/stackabletech/krb5-rs.git" , tag = " v0.1.0" }
1616
1717anyhow = " 1.0"
1818async-trait = " 0.1"
1919built = { version = " 0.8" , features = [" chrono" , " git2" ] }
2020byteorder = " 1.5"
21+ chrono = " 0.4"
2122clap = " 4.5"
2223const_format = " 0.2.34"
2324futures = { version = " 0.3" , features = [" compat" ] }
2425h2 = " 0.4"
2526hex = " 0.4"
26- # This version needs to match the kube version that is re-exported by stackable-operator!
27- kube-runtime = { git = " https://github.com/stackabletech/kube-rs" , branch = " 2.0.1-fix-schema-hoisting" , version = " =2.0.1" , features = [" unstable-runtime-stream-control" ] }
27+ # We can't use the stackable-operator re-export because we need the special "unstable-runtime-stream-control"
28+ # feature. We don't want to enable it in stackable-operator, as we don't want to accidentally use
29+ # unstable features.
30+ # This version needs to match the kube version that is re-exported by stackable-operator, so that
31+ # the feature unification works!
32+ kube-runtime = { git = " https://github.com/kube-rs/kube-rs" , rev = " fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5" , default-features = false , features = [" unstable-runtime-stream-control" ] }
33+ # Hopefully soon we can switch to
34+ # kube-runtime = { version = "*", default-features = false, features = ["unstable-runtime-stream-control"] }
2835ldap3 = { version = " 0.11" , default-features = false , features = [" gssapi" , " tls" ] }
2936libc = " 0.2"
3037native-tls = " 0.2"
0 commit comments