Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove openssl #1700

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
173 changes: 153 additions & 20 deletions Cargo.lock

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

11 changes: 3 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,9 @@ quote = "1.0.8"
rand = "0.8.5"
rayon = "1.8"
rayon-core = "1.11.0"
rcgen = "0.13.1"
regex = "1"
reqwest = { version = "0.12", features = ["stream", "json"] }
reqwest = { version = "0.12", features = ["stream", "json", "rustls-tls"] }
rusqlite = { version = "0.29.0", features = ["bundled", "column_decltype"] }
rust_decimal = { version = "1.29.1", features = ["db-tokio-postgres"] }
rustc-demangle = "0.1.21"
Expand Down Expand Up @@ -242,8 +243,6 @@ urlencoding = "2.1.2"
uuid = { version = "1.2.1", features = ["v4"] }
walkdir = "2.2.5"
wasmbin = "0.6"


wasmtime = { version = "15", default-features = false, features = ["cranelift", "demangle", "addr2line", "cache"] }

# We use the "ondemand" feature to allow connecting after the start,
Expand All @@ -257,8 +256,4 @@ tracing-tracy = { version = "0.10.4", features = [
"code-transfer",
"broadcast",
"ondemand",
] }

# Vendor the openssl we rely on, rather than depend on a
# potentially very old system version.
openssl = { version = "0.10", features = ["vendored"] }
] }
1 change: 0 additions & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jsonwebtoken.workspace = true
lazy_static.workspace = true
log.workspace = true
once_cell.workspace = true
openssl.workspace = true
parking_lot.workspace = true
paste.workspace = true
pin-project-lite.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/standalone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ futures.workspace = true
hostname.workspace = true
http.workspace = true
log.workspace = true
openssl.workspace = true
rcgen.workspace = true
prometheus.workspace = true
scopeguard.workspace = true
serde_json.workspace = true
Expand Down
Loading
Loading