Skip to content

Commit

Permalink
chore: Remove openssl dependencies (#1036)
Browse files Browse the repository at this point in the history
I believe this will stop dynamically linking to openssl.
  • Loading branch information
scsmithr authored May 25, 2023
1 parent 7d909f9 commit f9ade2b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 107 deletions.
109 changes: 8 additions & 101 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ lto = "thin"

[workspace.dependencies]
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "main" }

[patch.crates-io]
object_store = { git = "https://github.com/glaredb/arrow-rs.git", branch = "content-length" }
2 changes: 1 addition & 1 deletion crates/datasource_mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tokio = { version = "1", features = ["full"] }
async-stream = "0.3.5"
datafusion = {workspace = true}
serde = { version = "1.0", features = ["derive"] }
mysql_async = "0.32.2"
mysql_async = { version = "0.32.2", default-features = false, features = ["default-rustls"] }
mysql_common = { version = "0.30.4", features = ["chrono"] }
chrono = "*"
rust_decimal = "*"
Expand Down
2 changes: 1 addition & 1 deletion crates/snowflake_connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = { workspace = true }

[dependencies]
thiserror = "1.0"
reqwest = { version = "0.11.18", features = ["json"] }
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ edition = "2021"
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.2.7", features = ["derive"] }
reqwest = {version = "0.11.18", features = ["blocking"]}
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls", "blocking"] }
xshell = "0.2.3"
zip = "0.6.6"

0 comments on commit f9ade2b

Please sign in to comment.