File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 66 - rust : beta
77 - rust : nightly
88 - rust : nightly
9+ name : " allocator api"
910 script :
1011 - cargo test --features allocator-api
1112 - rust : nightly
13+ name : " wasm"
1214 install : rustup target add wasm32-unknown-unknown
1315 script :
1416 - cargo build --target wasm32-unknown-unknown
@@ -17,6 +19,7 @@ matrix:
1719script :
1820 - cargo test
1921 - cargo test --features debug
22+ - cargo test --features global
2023 - cargo test --release
2124 - cargo test --release --features debug
2225 - RUSTFLAGS='--cfg test_lots' cargo test --release
Original file line number Diff line number Diff line change @@ -17,7 +17,12 @@ rand = "0.3"
1717debug-assertions = true
1818
1919[features ]
20- default = [" global" ]
20+ # Enable implementations of the `GlobalAlloc` standard library API, exporting a
21+ # new `GlobalDlmalloc` as well which implements this trait.
2122global = []
23+
24+ # Enable very expensive debug checks in this crate
2225debug = []
26+
27+ # Enable experimental support for the standard library's unstable allocator API.
2328allocator-api = []
You can’t perform that action at this time.
0 commit comments