rawpointer 0.2.1

Extra methods for raw pointers and `NonNull<T>`. For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`), `offset` and `add` for `NonNull<T>`, and the function `ptrdistance`.
Documentation
language: rust
sudo: false
matrix:
  include:
    - rust: 1.26.0
    - rust: stable
    - rust: nightly
branches:
  only:
    - master
script:
  - |
      cargo build -v --features "$FEATURES" &&
      cargo test -v --features "$FEATURES" &&
      cargo test -v --release --features "$FEATURES"