From 51d4ee147dd71bbbb6bb7ab2f8ae97ea91744fd8 Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Mon, 2 Jun 2025 16:06:05 +0200 Subject: [PATCH] Remove reference to static-openssl. --- Cargo.lock | 20 ++++++-------------- Cargo.toml | 4 ---- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 69b2ea3..9bc2ed2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,8 +338,9 @@ dependencies = [ [[package]] name = "domain" -version = "0.11.1-dev" -source = "git+https://github.com/NLnetLabs/domain.git?branch=main#29f52db7c215ac25dde7e1f88ac5b23dc00bfc0d" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a11dd7f04a6a6d2aea0153c6e31f5ea7af8b2efdf52cdaeea7a9a592c7fefef9" dependencies = [ "arc-swap", "bumpalo", @@ -370,8 +371,9 @@ dependencies = [ [[package]] name = "domain-macros" -version = "0.11.1-dev" -source = "git+https://github.com/NLnetLabs/domain.git?branch=main#29f52db7c215ac25dde7e1f88ac5b23dc00bfc0d" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e197fdfd2cdb5fdeb7f8ddcf3aed5d5d04ecde2890d448b14ffb716f7376b70" dependencies = [ "proc-macro2", "quote", @@ -782,15 +784,6 @@ dependencies = [ "syn", ] -[[package]] -name = "openssl-src" -version = "300.5.0+3.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8ce546f549326b0e6052b649198487d91320875da901e7bd11a06d1ee3f9c2f" -dependencies = [ - "cc", -] - [[package]] name = "openssl-sys" version = "0.9.109" @@ -799,7 +792,6 @@ checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index 3ee3e75..b718011 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,10 +23,6 @@ default = ["openssl", "ring"] openssl = ["domain/openssl"] ring = ["domain/ring"] -# For building in a cargo cross container that lacks openssl-dev so cannot -# successfully compile the Rust OpenSSL crate. -static-openssl = ["domain/static-openssl"] - [dependencies] bytes = "1.8.0" chrono = "0.4.38"