rust/test-cargo-miri/cdylib/Cargo.toml
Ralf Jung 8fa1542878 make test-cargo-miri only about cargo
remove rand (large dependency) and page-size (testing the dependency, not cargo-miri).
keep only byteorder as a "demo" dependency, it is a leaf and builds quickly.
2022-07-21 08:44:34 -04:00

13 lines
292 B
TOML

[package]
name = "cdylib"
version = "0.1.0"
authors = ["Miri Team"]
edition = "2018"
[lib]
# cargo-miri used to handle `cdylib` crate-type specially (https://github.com/rust-lang/miri/pull/1577).
crate-type = ["cdylib"]
[dependencies]
byteorder = "1.0" # to test dependencies of sub-crates