cowstr 1.0.0-beta2

Copy-on-Write shared strings
1
2
3
4
5
6
7
8
9
10
11
12
# Testing Notes

 * **`cargo test`**/**`cargo +nightly test`** 
   Tests default features with default and nightly toolchain.
 * **`cargo miri test`**/**`cargo +nightly miri test`** 
   Tests default features with default
   and nightly toolchain under miri (used to test unsafe code).
 * **`cargo +nightly test-all-features`** 
   Must be run under nightly, will test with all possible feature permutations.
 * **`cargo +nightly mutants -j 8 -- --features XXX`** 
   Run `cargo mutants` with some additional feature enabled.
   Needs nightly to test the conditional features.