@@ -55,6 +55,7 @@ wasmtime-wasi = { workspace = true, default-features = true, optional = true }
5555wasmtime-wasi-nn = { workspace = true , optional = true }
5656wasmtime-wasi-config = { workspace = true , optional = true }
5757wasmtime-wasi-tls = { workspace = true , optional = true }
58+ wasmtime-wasi-tls-nativetls = { workspace = true , optional = true }
5859wasmtime-wasi-keyvalue = { workspace = true , optional = true }
5960wasmtime-wasi-threads = { workspace = true , optional = true }
6061wasmtime-wasi-http = { workspace = true , optional = true }
@@ -234,7 +235,8 @@ wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "35.0.0" }
234235wasmtime-wasi-config = { path = " crates/wasi-config" , version = " 35.0.0" }
235236wasmtime-wasi-keyvalue = { path = " crates/wasi-keyvalue" , version = " 35.0.0" }
236237wasmtime-wasi-threads = { path = " crates/wasi-threads" , version = " 35.0.0" }
237- wasmtime-wasi-tls = { path = " crates/wasi-tls" , version = " 35.0.0" , default-features = false }
238+ wasmtime-wasi-tls = { path = " crates/wasi-tls" , version = " 35.0.0" }
239+ wasmtime-wasi-tls-nativetls = { path = " crates/wasi-tls-nativetls" , version = " 35.0.0" }
238240wasmtime-wast = { path = " crates/wast" , version = " =35.0.0" }
239241
240242# Internal Wasmtime-specific crates.
@@ -439,7 +441,6 @@ default = [
439441 " wasi-config" ,
440442 " wasi-keyvalue" ,
441443 " wasi-tls" ,
442- " wasi-tls-rustls" ,
443444
444445 # Most features of Wasmtime are enabled by default.
445446 " wat" ,
@@ -480,7 +481,6 @@ trace-log = ["wasmtime/trace-log"]
480481memory-protection-keys = [" wasmtime-cli-flags/memory-protection-keys" ]
481482profile-pulley = [" wasmtime/profile-pulley" ]
482483component-model-async = [" wasmtime-cli-flags/component-model-async" , " component-model" ]
483- wasi-tls-nativetls = [" wasi-tls" , " wasmtime-wasi-tls/nativetls" ]
484484
485485# This feature, when enabled, will statically compile out all logging statements
486486# throughout Wasmtime and its dependencies.
@@ -493,7 +493,6 @@ disable-logging = ["log/max_level_off", "tracing/max_level_off"]
493493# the internal mapping for what they enable in Wasmtime itself.
494494wasi-nn = [" dep:wasmtime-wasi-nn" ]
495495wasi-tls = [" dep:wasmtime-wasi-tls" ]
496- wasi-tls-rustls = [" wasi-tls" , " wasmtime-wasi-tls/rustls" ]
497496wasi-threads = [" dep:wasmtime-wasi-threads" , " threads" ]
498497wasi-http = [" component-model" , " dep:wasmtime-wasi-http" , " dep:tokio" , " dep:hyper" ]
499498wasi-config = [" dep:wasmtime-wasi-config" ]
0 commit comments