We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3086061 commit b274ca3Copy full SHA for b274ca3
2 files changed
Cargo.toml
@@ -48,6 +48,8 @@ idea = []
48
seed = []
49
# Forces configuring Engine module support.
50
force-engine = []
51
+# Enable kTLS support
52
+ktls = []
53
54
[workspace]
55
members = ['testcrate']
src/lib.rs
@@ -219,6 +219,10 @@ impl Build {
219
configure.arg("no-seed");
220
}
221
222
+ if cfg!(feature = "ktls") {
223
+ configure.arg("enable-ktls");
224
+ }
225
+
226
if target.contains("musl") {
227
// Engine module fails to compile on musl (it needs linux/version.h
228
// right now) but we don't actually need this most of the time.
0 commit comments