2019-01-21 16:59:10 +01:00
|
|
|
[package]
|
2019-07-08 23:21:37 +02:00
|
|
|
name = "stdarch_examples"
|
2019-01-21 16:59:10 +01:00
|
|
|
version = "0.0.0"
|
|
|
|
|
authors = [
|
|
|
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
|
|
|
"Andrew Gallant <jamslam@gmail.com>",
|
|
|
|
|
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
|
|
|
|
]
|
2019-07-08 23:21:37 +02:00
|
|
|
description = "Examples of the stdarch crate."
|
2025-02-09 10:13:55 -08:00
|
|
|
edition = "2024"
|
2020-12-25 18:42:42 -05:00
|
|
|
default-run = "hex"
|
2019-01-21 16:59:10 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
core_arch = { path = "../crates/core_arch" }
|
2023-10-03 20:12:50 +02:00
|
|
|
quickcheck = "1.0"
|
2023-10-03 20:13:36 +02:00
|
|
|
rand = "0.8"
|
2019-01-21 16:59:10 +01:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "hex"
|
|
|
|
|
path = "hex.rs"
|
|
|
|
|
|
2020-12-25 18:42:42 -05:00
|
|
|
[[bin]]
|
|
|
|
|
name = "connect5"
|
|
|
|
|
path = "connect5.rs"
|
|
|
|
|
|
2019-01-21 16:59:10 +01:00
|
|
|
[[example]]
|
|
|
|
|
name = "wasm"
|
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
path = "wasm.rs"
|