Files
rust/library/stdarch/examples/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
540 B
TOML
Raw Permalink Normal View History

[package]
2019-07-08 23:21:37 +02:00
name = "stdarch_examples"
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"
[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"
[[bin]]
name = "hex"
path = "hex.rs"
2020-12-25 18:42:42 -05:00
[[bin]]
name = "connect5"
path = "connect5.rs"
[[example]]
name = "wasm"
crate-type = ["cdylib"]
path = "wasm.rs"