Skip to content

Commit

Permalink
fix: Fix openssl dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarek-kindred committed Sep 29, 2023
1 parent 724f526 commit 3c4bc36
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 64 deletions.
58 changes: 0 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/agent_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env_logger = { workspace = true }
log = { workspace = true }
rand = { version = "0.8.5" }

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/cohort_replicator_kafka_pg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/cohort_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ opentelemetry_sdk = { version = "0.20.0", features = ["metrics", "rt-tokio"] }
opentelemetry = { version = "0.20.0" }
rand = { version = "0.8.5" }

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/talos_agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env_logger = { workspace = true }
log = { workspace = true }
multimap = { version = "0.9.0" }

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/talos_certifier_adapters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tokio = { workspace = true }
async-trait = { workspace = true }
futures-util = "0.3.21"
# Kafka
rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/talos_rdkafka_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mockall = "0.11.0"
# Error
thiserror = "1.0.31"

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0" }
#rdkafka-sys = { version = "4.6.0", features = ["ssl-vendored", "gssapi-vendored"] }
#openssl-sys = { version = "0.9", features = ["vendored"] }
#openssl = { version = "0.10", features = ["vendored", "v111"] }
Expand Down

0 comments on commit 3c4bc36

Please sign in to comment.