diff options
Diffstat (limited to 'libgrust/rustc-lib/stdarch/crates/stdarch-test/Cargo.toml')
| -rw-r--r-- | libgrust/rustc-lib/stdarch/crates/stdarch-test/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libgrust/rustc-lib/stdarch/crates/stdarch-test/Cargo.toml b/libgrust/rustc-lib/stdarch/crates/stdarch-test/Cargo.toml new file mode 100644 index 0000000..9eb6b64 --- /dev/null +++ b/libgrust/rustc-lib/stdarch/crates/stdarch-test/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "stdarch-test" +version = "0.1.0" +authors = ["Alex Crichton <alex@alexcrichton.com>"] + +[dependencies] +assert-instr-macro = { path = "../assert-instr-macro" } +simd-test-macro = { path = "../simd-test-macro" } +cc = "1.0" +lazy_static = "1.0" +rustc-demangle = "0.1.8" +cfg-if = "0.1" + +# We use a crates.io dependency to disassemble wasm binaries to look for +# instructions for `#[assert_instr]`. Note that we use an `=` dependency here +# instead of a floating dependency because the text format for wasm changes over +# time, and we want to make updates to this explicit rather than automatically +# picking up updates which might break CI with new instruction names. +[target.'cfg(target_arch = "wasm32")'.dependencies] +wasmprinter = "=0.2.6" + +[features] +default = [] |
