Skip to content

Commit

Permalink
fix: fill missing openssl support
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Jul 11, 2024
1 parent d468b87 commit a79e215
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ gethostname = { version = "0.4" }
glob = { version = "0.3" }
hickory-server = { version = "*", default-features = false, features = [
"backtrace",
"dnssec-ring",
] }
home = { version = "0.5" }
http-cache-reqwest = { version = "0.14", features = ["manager-cacache"] }
Expand Down
8 changes: 5 additions & 3 deletions crates/dash/pipe/provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ messengers = [
# "ros2", # exclude(alpine)
]
kafka = ["dep:rdkafka"]
nats = ["dep:async-nats"]
nats = ["ark-core-k8s/async-nats", "dep:async-nats"]
ros2 = ["dep:r2r"]

# storage
Expand All @@ -43,15 +43,17 @@ s3 = ["chrono", "minio"]
arrow = ["dep:arrow", "async-stream"]

# TLS
openssl-tls = ["deltalake?/s3-native-tls", "minio?/native-tls"]
openssl-tls = [
"deltalake?/s3-native-tls", # FIXME: it depends on `ring`!
"minio?/native-tls",
]
rustls-tls = ["async-nats?/ring", "deltalake?/s3", "minio?/rustls-tls"]

[dependencies]
ark-core = { path = "../../../ark/core", default-features = false, features = [
"signal",
] }
ark-core-k8s = { path = "../../../ark/core/k8s", default-features = false, features = [
"async-nats",
"data",
] }
dash-api = { path = "../../api", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/kiss/dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ default-tls = ["rustls-tls"]
openssl-tls = [
"ark-core-k8s/openssl-tls",
"hickory-server/dns-over-openssl",
"hickory-server/dnssec-openssl",
"kube/openssl-tls",
]
rustls-tls = [
"ark-core-k8s/rustls-tls",
"hickory-server/dns-over-https-rustls",
"hickory-server/dnssec-ring",
"kube/rustls-tls",
]

Expand Down
6 changes: 3 additions & 3 deletions crates/kubegraph/market/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ default-tls = ["rustls-tls"]
openssl-tls = [
"actix-web/openssl",
"kubegraph-api/openssl-tls",
"kubegraph-market-entity/rustls-tls",
"kubegraph-market-function/rustls-tls",
"kubegraph-market-migration/rustls-tls",
"kubegraph-market-entity/openssl-tls",
"kubegraph-market-function/openssl-tls",
"kubegraph-market-migration/openssl-tls",
"kubegraph-vm-local?/openssl-tls",
"sea-orm/runtime-tokio-native-tls",
]
Expand Down

0 comments on commit a79e215

Please sign in to comment.