You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
[package]
|
|
name = "wasmtime-cli-flags"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description = "Exposes common CLI flags used for running Wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-cache/"
|
|
edition.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
file-per-thread-logger = { workspace = true, optional = true }
|
|
tracing-subscriber = { workspace = true, optional = true }
|
|
rayon = { version = "1.5.0", optional = true }
|
|
wasmtime = { workspace = true, features = ["gc"] }
|
|
humantime = { workspace = true }
|
|
|
|
[features]
|
|
pooling-allocator = []
|
|
component-model = ["wasmtime/component-model"]
|
|
cache = ["wasmtime/cache"]
|
|
parallel-compilation = ["wasmtime/parallel-compilation", "dep:rayon"]
|
|
logging = ["dep:file-per-thread-logger", "dep:tracing-subscriber"]
|
|
cranelift = ["wasmtime/cranelift"]
|
|
coredump = ["wasmtime/coredump"]
|
|
gc = ["wasmtime/gc"]
|
|
threads = ["wasmtime/threads"]
|
|
|