Skip to content

Commit 627c55c

Browse files
Comments, change log clarifications for statically linked MUSl/Alpine builds
1 parent e0c4076 commit 627c55c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## v2.19.0 (Dec 13, 2025)
44

5+
### Enhancements
6+
7+
* Binary releases that use statically linked MUSL for Alpine Linux
8+
* `rabbitmqadmin` users now can build the tool with native TLS support (via the `native-tls` feature, on by default)
9+
or Rustls, for example, when targeting platforms that do not provide a dynamically linkable TLS library
10+
511
### Bug Fixes
612

713
* `definitions export` and `definitions export_from_vhost` now exit with an error code should a file write fail

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ license = "MIT OR Apache-2.0"
88

99
[features]
1010
default = ["native-tls"]
11-
# native-tls: Uses platform-native TLS (SecureTransport/SChannel/OpenSSL) alongside rustls.
12-
# Disable this feature for musl builds to avoid OpenSSL dependency.
11+
# Uses a platform-specific TLS implementation (SecureTransport, SChannel, OpenSSL).
12+
# Disable this feature for musl builds to avoid pulling in an OpenSSL dependency.
1313
native-tls = ["reqwest/default-tls", "rabbitmq_http_client/default-tls"]
1414

1515
[dependencies]
1616
clap = { version = "4", features = ["help", "color", "cargo", "env"] }
1717
url = "2"
1818
sysexits = "0.10"
19-
# reqwest: disable defaults to control TLS features explicitly.
20-
# Base features always included; native-tls added via the native-tls feature above.
19+
# For reqwest, we disable defaults to control what TLS features are enabled explicitly at build time.
20+
# Base features always included; native-tls is added via the native-tls feature above.
2121
reqwest = { version = "0.12", default-features = false, features = [
2222
"blocking",
2323
"json",

0 commit comments

Comments
 (0)