evm 0.9.3

Ethereum Virtual Machine implementation in Rust. Nightly version of SputnikVM.
Documentation
language: rust

rust:
  - stable
  - beta
  - nightly

os:
  - linux
  - osx

script:
  - cargo build --release --all --verbose
  - cargo test --release --all --verbose
  - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo build --no-default-features --features rust-secp256k1; fi

matrix:
  allow_failures:
    - rust: nightly

notifications:
  email:
    on_success: never