Skip to content

Commit 3e898e7

Browse files
authored
Fix ipv6 incompatibility (#76)
* Fix ipv6 incompatibility Fixes #70 This adds the "rustls-tls" feature to the kube dependency, so we end up depending on hyper-rustls instead of hyper-openssl, as the latter is responsible for the bug reported in #70. The bug is caused by ipv6 addresses not getting sanitized when configuring SSL. * Add license exception for ring
1 parent bac2c36 commit 3e898e7

File tree

3 files changed

+182
-2
lines changed

3 files changed

+182
-2
lines changed

Cargo.lock

+168
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ features = ["derive", "help", "usage", "env", "std"]
3333
[dependencies.kube]
3434
version = "0.87"
3535
default-features = false
36-
features = ["client", "jsonpatch"]
36+
features = ["client", "jsonpatch", "rustls-tls"]
3737

3838
[dependencies.k8s-openapi]
3939
version = "0.20"

deny.toml

+13-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ yanked = "deny"
1212
ignore = []
1313

1414
[licenses]
15-
allow = ["Apache-2.0", "MIT"]
15+
allow = ["Apache-2.0", "ISC", "MIT"]
1616
confidence-threshold = 0.8
1717
exceptions = [
1818
# The Unicode-DFS--2016 license is necessary for unicode-ident because
@@ -25,8 +25,20 @@ exceptions = [
2525
"Apache-2.0",
2626
"Unicode-DFS-2016",
2727
], name = "unicode-ident" },
28+
29+
{ allow = [
30+
"ISC",
31+
"MIT",
32+
"OpenSSL",
33+
], name = "ring", version = "*" },
2834
]
2935

36+
[[licenses.clarify]]
37+
name = "ring"
38+
version = "*"
39+
expression = "MIT AND ISC AND OpenSSL"
40+
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
41+
3042
[bans]
3143
multiple-versions = "deny"
3244
wildcards = "deny"

0 commit comments

Comments
 (0)