[go: up one dir, main page]

mucell 0.3.2

A cell with the ability to mutate the value through an immutable reference when safe
Documentation
1
2
3
4
5
6
7
8
9
10
11
language: rust
sudo: false
rust:
  - nightly
  - beta
  - stable
script:
  - if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features no_std; else ! cargo test --features no_std; fi
  - if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features const_fn; else ! cargo test --features const_fn; fi
  - if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features 'const_fn no_std'; else ! cargo test --features 'const_fn no_std'; fi
  - cargo test