forked from rust-random/getrandom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (25 loc) · 797 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "wasm-bindgen-getrandom"
version = "0.1.0"
edition = "2018"
authors = ["The Rand Project Developers"]
license = "MIT OR Apache-2.0"
description = "Custom shim for using getrandom with wasm-bindgen"
documentation = "https://docs.rs/wasm-bindgen-getrandom"
repository = "https://github.com/rust-random/getrandom"
categories = ["wasm"]
[dependencies]
getrandom = { path = "../..", version = "0.2", features = ["custom"] }
wasm-bindgen = "0.2.29"
[dev-dependencies]
wasm-bindgen-test = "0.2"
# Test-only features allowing us to reuse most of the code in common.rs
[features]
default = ["test-bindgen"]
test-bindgen = []
test-in-browser = ["test-bindgen"]
[[test]]
name = "common"
path = "../../tests/common.rs"
[package.metadata.docs.rs]
default-target = "wasm32-unknown-unknown"