aboutsummaryrefslogtreecommitdiff
path: root/libgrust/rustc-lib/stdarch/examples/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'libgrust/rustc-lib/stdarch/examples/Cargo.toml')
-rw-r--r--libgrust/rustc-lib/stdarch/examples/Cargo.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/libgrust/rustc-lib/stdarch/examples/Cargo.toml b/libgrust/rustc-lib/stdarch/examples/Cargo.toml
new file mode 100644
index 0000000..72599b4
--- /dev/null
+++ b/libgrust/rustc-lib/stdarch/examples/Cargo.toml
@@ -0,0 +1,25 @@
+[package]
+name = "stdarch_examples"
+version = "0.0.0"
+authors = [
+ "Alex Crichton <alex@alexcrichton.com>",
+ "Andrew Gallant <jamslam@gmail.com>",
+ "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
+]
+description = "Examples of the stdarch crate."
+edition = "2018"
+
+[dependencies]
+core_arch = { path = "../crates/core_arch" }
+std_detect = { path = "../crates/std_detect" }
+quickcheck = "0.9"
+rand = "0.7"
+
+[[bin]]
+name = "hex"
+path = "hex.rs"
+
+[[example]]
+name = "wasm"
+crate-type = ["cdylib"]
+path = "wasm.rs"