cowstr 1.3.0

Copy-on-Write shared strings
Documentation
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 +nightly miri test --features serde,nightly`** 
   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 serde,nightly`** 
   Run `cargo mutants` with some additional feature enabled.
   Needs nightly to test the conditional features.