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 c9e2541 commit 7e9f7e0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 54 deletions.
44 changes: 0 additions & 44 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion examples/agent_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ env_logger = { workspace = true }
log = { workspace = true }
rand = { version = "0.8.5" }
rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka-sys = { version = "4.3.0" }
# rdkafka-sys = { version = "4.3.0" }
rdkafka-sys = { version = "4.6.0" }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { version = "0.25", features = ["derive"] }
Expand Down
5 changes: 3 additions & 2 deletions examples/cohort_banking_with_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ opentelemetry-stdout = { version = "0.1.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.20.0", features = ["metrics", "rt-tokio"] }
opentelemetry = { version = "0.20.0", features = ["metrics"] }
rand = { version = "0.8.5" }
rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka-sys = { version = "4.3.0" }
rdkafka = { version = "0.34.0" }
# rdkafka-sys = { version = "4.3.0" }
rdkafka-sys = { version = "4.6.0" }
rust_decimal = { version = "1.30.0", features = ["db-tokio-postgres", "serde-with-float"] }
time = { version = "0.3.17" }
tokio-postgres = { version = "0.7", features = [ "with-uuid-1", "with-serde_json-1" ] }
Expand Down
8 changes: 4 additions & 4 deletions packages/cohort_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ 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-sys = { version = "4.3.0" }
openssl-sys = { version = "0.9" }
sasl2-sys = { version = "0.1.20" }
openssl = { version = "0.10.57" }
rdkafka-sys = { version = "4.6.0" }
#openssl-sys = { version = "0.9", features = ["vendored"] }
# sasl2-sys = { version = "0.1.20", features = ["vendored"] }
#openssl = { version = "0.10.57" }
#sasl2-sys = { version = "0.1.20", features = ["vendored", "openssl-vendored"] }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 0 additions & 2 deletions packages/cohort_sdk_js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ talos_certifier_adapters = { path = "../../packages/talos_certifier_adapters" }
talos_rdkafka_utils = { path = "../talos_rdkafka_utils" }

async-trait = "0.1.72"
# rdkafka = { version = "0.34.0", features = ["sasl"] }
# rdkafka-sys = { version = "4.3.0" }

[build-dependencies]
napi-build = "2.0.1"
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-sys = { version = "4.3.0" }
rdkafka-sys = { version = "4.6.0" }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { version = "0.25", features = ["derive"] }
Expand Down

0 comments on commit 7e9f7e0

Please sign in to comment.