futures-intrusive 0.5.0

Futures based on intrusive data structures - for std and no-std environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: rust
rust:
  - stable
env:
  - RUST_BACKTRACE=1
cache:
  directories:
    - /home/travis/.cargo
before_cache:
  - cargo cache -r registry
before_script:
  - rustup component add rustfmt
  - (test -x $HOME/.cargo/bin/cargo-cache || cargo install cargo-cache)
script:
  - cargo fmt --all -- --check
  - cargo test --no-default-features
  - cargo test --no-default-features --features alloc
  - cargo test --all-targets --all-features