Dan Gohman
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with
0 additions and
88 deletions
Cargo.toml
cranelift/bforest/Cargo.toml
cranelift/codegen/Cargo.toml
cranelift/codegen/meta/Cargo.toml
cranelift/entity/Cargo.toml
cranelift/frontend/Cargo.toml
cranelift/interpreter/Cargo.toml
cranelift/jit/Cargo.toml
cranelift/module/Cargo.toml
cranelift/native/Cargo.toml
cranelift/object/Cargo.toml
cranelift/reader/Cargo.toml
cranelift/serde/Cargo.toml
cranelift/umbrella/Cargo.toml
cranelift/wasm/Cargo.toml
crates/component-macro/Cargo.toml
crates/environ/Cargo.toml
crates/jit-debug/Cargo.toml
crates/jit/Cargo.toml
crates/runtime/Cargo.toml
crates/wasi-common/Cargo.toml
crates/wasi-crypto/Cargo.toml
crates/wasi-nn/Cargo.toml
crates/wasi-threads/Cargo.toml
crates/wasmtime/Cargo.toml
crates/wast/Cargo.toml
crates/wiggle/Cargo.toml
crates/wiggle/generate/Cargo.toml
crates/wiggle/test-helpers/Cargo.toml
@ -239,9 +239,6 @@ winch = ["wasmtime/winch"]
# backend is the default now.
experimental_x64 = [ ]
[ badges ]
maintenance = { status = "actively-developed" }
[ [ test ] ]
name = "host_segfault"
harness = false
@ -13,6 +13,3 @@ edition.workspace = true
[ dependencies ]
cranelift-entity = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -114,9 +114,6 @@ isle-errors = ["cranelift-isle/fancy-errors"]
# inspection, rather than inside of target/.
isle-in-source-tree = [ ]
[ badges ]
maintenance = { status = "experimental" }
[ [ bench ] ]
name = "x64-evex-encoding"
harness = false
@ -14,6 +14,3 @@ edition.workspace = true
[ dependencies ]
cranelift-codegen-shared = { path = "../shared" , version = "0.96.0" }
[ badges ]
maintenance = { status = "experimental" }
@ -16,6 +16,3 @@ serde = { version = "1.0.94", features = ["derive"], optional = true }
[ features ]
enable-serde = [ "serde" ]
[ badges ]
maintenance = { status = "experimental" }
@ -24,6 +24,3 @@ similar = { workspace = true }
default = [ "std" ]
std = [ "cranelift-codegen/std" ]
core = [ "hashbrown" , "cranelift-codegen/core" ]
[ badges ]
maintenance = { status = "experimental" }
@ -23,6 +23,3 @@ libm = "0.2.4"
[ dev-dependencies ]
cranelift-frontend = { workspace = true }
cranelift-reader = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -39,6 +39,3 @@ default = []
cranelift = { workspace = true }
cranelift-frontend = { workspace = true }
cranelift-entity = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -24,6 +24,3 @@ core = ["hashbrown", "cranelift-codegen/core"]
# For dependent crates that want to serialize some parts of cranelift
enable-serde = [ "serde" , "cranelift-codegen/enable-serde" ]
[ badges ]
maintenance = { status = "experimental" }
@ -21,7 +21,3 @@ libc = "0.2.95"
default = [ "std" ]
std = [ "cranelift-codegen/std" ]
core = [ "cranelift-codegen/core" ]
[ badges ]
maintenance = { status = "experimental" }
@ -21,6 +21,3 @@ log = { workspace = true }
[ dev-dependencies ]
cranelift-frontend = { workspace = true }
cranelift-entity = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -15,9 +15,6 @@ cranelift-codegen = { workspace = true }
smallvec = { workspace = true }
target-lexicon = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
[ features ]
default = [ ]
experimental_x64 = [ ]
@ -18,6 +18,3 @@ clap = { workspace = true }
serde_json = "1.0.26"
cranelift-codegen = { workspace = true , features = [ "enable-serde" ] }
cranelift-reader = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -19,6 +19,3 @@ cranelift-frontend = { workspace = true }
default = [ "std" ]
std = [ "cranelift-codegen/std" , "cranelift-frontend/std" ]
core = [ "cranelift-codegen/core" , "cranelift-frontend/core" ]
[ badges ]
maintenance = { status = "experimental" }
@ -32,6 +32,3 @@ default = ["std"]
std = [ "cranelift-codegen/std" , "cranelift-frontend/std" ]
core = [ "hashbrown" , "cranelift-codegen/core" , "cranelift-frontend/core" ]
enable-serde = [ "serde" ]
[ badges ]
maintenance = { status = "experimental" }
@ -24,9 +24,6 @@ wasmtime-component-util = { workspace = true }
wasmtime-wit-bindgen = { workspace = true }
wit-parser = { workspace = true }
[ badges ]
maintenance = { status = "actively-developed" }
[ dev-dependencies ]
wasmtime = { path = '../wasmtime' , features = [ 'component-model' ] }
component-macro-test-helpers = { path = 'test-helpers' }
@ -36,9 +36,6 @@ wat = { workspace = true }
name = "factc"
required-features = [ 'component-model' ]
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
component-model = [
"dep:wasm-encoder" ,
@ -17,9 +17,6 @@ object = { workspace = true, optional = true }
[ target . 'cfg(target_os = "linux")' . dependencies ]
rustix = { workspace = true , features = [ "mm" , "param" , "time" ] , optional = true }
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
gdb_jit_int = [ "once_cell" ]
perf_jitdump = [ "rustix" , "object" ]
@ -39,6 +39,3 @@ ittapi = { version = "0.3.3", optional = true }
[ features ]
jitdump = [ 'wasmtime-jit-debug' ]
vtune = [ 'ittapi' ]
[ badges ]
maintenance = { status = "actively-developed" }
@ -50,9 +50,6 @@ once_cell = { workspace = true }
[ build-dependencies ]
cc = "1.0"
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
async = [ "wasmtime-fiber" ]
@ -41,9 +41,6 @@ features = [
"Win32_Networking_WinSock" ,
]
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
default = [ "trace_log" ]
# This feature enables the `tracing` logs in the calls to target the `log`
@ -16,6 +16,3 @@ anyhow = { workspace = true }
wasi-crypto = { path = "spec/implementations/hostcalls/rust" , version = "0.1.5" }
wasmtime = { workspace = true }
wiggle = { workspace = true }
[ badges ]
maintenance = { status = "experimental" }
@ -22,6 +22,3 @@ thiserror = { workspace = true }
[ build-dependencies ]
walkdir = "2.3"
[ badges ]
maintenance = { status = "experimental" }
@ -18,6 +18,3 @@ rand = "0.8"
wasi-common = { workspace = true }
wasmtime = { workspace = true }
wasmtime-wasi = { workspace = true , features = [ "exit" ] }
[ badges ]
maintenance = { status = "experimental" }
@ -56,9 +56,6 @@ tempfile = "3.0"
wasmtime-wasi = { path = "../wasi" }
wasi-cap-std-sync = { path = "../wasi-common/cap-std-sync" }
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
default = [
'async' ,
@ -15,8 +15,5 @@ wasmtime = { workspace = true, features = ['cranelift'] }
wast = { workspace = true }
log = { workspace = true }
[ badges ]
maintenance = { status = "actively-developed" }
[ features ]
component-model = [ 'wasmtime/component-model' ]
@ -20,9 +20,6 @@ async-trait = { workspace = true }
wasmtime = { workspace = true }
anyhow = { workspace = true }
[ badges ]
maintenance = { status = "actively-developed" }
[ dev-dependencies ]
wiggle-test = { path = "test-helpers" }
proptest = "1.0.0"
@ -21,6 +21,3 @@ heck = { workspace = true }
anyhow = { workspace = true }
syn = { version = "1.0" , features = [ "full" ] }
shellexpand = "2.0"
[ badges ]
maintenance = { status = "actively-developed" }
@ -21,6 +21,3 @@ thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.1" , default-features = false , features = [ 'fmt' ] }
env_logger = { workspace = true }
[ badges ]
maintenance = { status = "actively-developed" }