25 lines
905 B
TOML
25 lines
905 B
TOML
[package]
|
|
name = "libwasm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
once_cell = { version = "1.10.0", default-features = false, optional = true }
|
|
rand_core = { version = "0.6", default-features = false, optional = true }
|
|
rand_pcg = { version = "0.3.1", default-features = false, optional = true }
|
|
|
|
[target.'cfg(not(ableOS))'.dependencies]
|
|
rand_core = { version = "0.6", default-features = false, optional = true, features = ["getrandom"] }
|
|
|
|
|
|
[features]
|
|
default = ["rng", "pcg_rng", "io"]
|
|
# Controls availability of the `rand` module, which provides seeding for `rand` (the crate) RNGs.
|
|
rng = ["rand_core"]
|
|
# Controls the availability of `obtain_rng`, which internally uses `rand_pcg`.
|
|
pcg_rng = ["rng", "rand_pcg"]
|
|
# Controls the availability of the cross platform `io` module.
|
|
io = ["once_cell"]
|