odds 0.2.15

Odds and ends — collection miscellania. Extra functionality for slices, strings and other things. Odds for example provides debug checked variants of `get_unchecked` and `slice_unchecked`, and extra methods for strings and vectors: `repeat`, `insert_str` and `splice`. Things in odds may move to more appropriate crates if we find them.
Documentation
language: rust
sudo: false
matrix:
  include:
    - rust: 1.2.0
    - rust: stable
      env:
      - NODEFAULT=1
    - rust: beta
    - rust: nightly
      env:
      - FEATURES='unstable'
branches:
  only:
    - master
script:
  - |
      cargo build --verbose --features "$FEATURES" &&
      ([ "$NODEFAULT" != 1 ] || cargo build --verbose --no-default-features) &&
      cargo test --verbose --features "$FEATURES" &&
      cargo test --release --verbose --features "$FEATURES" &&
      cargo doc --verbose --features "$FEATURES"