Path: blob/main/cranelift/filetests/Cargo.toml
1692 views
[package]1name = "cranelift-filetests"2authors = ["The Cranelift Project Developers"]3version = "0.0.0"4description = "Test driver and implementations of the filetest commands"5license = "Apache-2.0 WITH LLVM-exception"6documentation = "https://docs.rs/cranelift-filetests"7repository = "https://github.com/bytecodealliance/wasmtime"8publish = false9edition.workspace = true10rust-version.workspace = true1112[lints]13workspace = true1415[dependencies]16cranelift-codegen = { workspace = true, features = ["disas", "timing"] }17cranelift-frontend = { workspace = true }18cranelift-interpreter = { workspace = true }19cranelift-native = { workspace = true }20cranelift-reader = { workspace = true }21cranelift-jit = { workspace = true, features = ["selinux-fix", "wasmtime-unwinder"] }22cranelift-module = { workspace = true }23cranelift-control = { workspace = true }24wasmtime-unwinder = { workspace = true, features = ["cranelift"] }25file-per-thread-logger = { workspace = true }26filecheck = { workspace = true }27gimli = { workspace = true, features = ['std'] }28log = { workspace = true }29num_cpus = "1.8.0"30target-lexicon = { workspace = true }31thiserror = { workspace = true }32anyhow = { workspace = true }33similar = { workspace = true }34wat.workspace = true35toml = { workspace = true }36serde = { workspace = true }37serde_derive = { workspace = true }38cranelift.workspace = true39smallvec = { workspace = true }40pulley-interpreter = { workspace = true, features = ["disas", "std", "interp"] }414243