secp256k1 0.12.2

Rust bindings for Pieter Wuille's `libsecp256k1` library. Implements ECDSA for the SECG elliptic curve group secp256k1 and related utilities.
Documentation
language: rust
cache: cargo

rust:
  - stable
  - beta
  - nightly
  - 1.14.0
os:
 - linux
 - windows

matrix:
  # rand 0.4 actually needs Rust 1.22, which leads to build failures on Rust 1.14 on Windows.
  # This is not a problem, because
  #  - we insist on rust 1.14 only for Debian, and
  #  - "rand" is only an optional dependency.
  exclude:
  - rust: 1.14.0
    os: windows

script:
  - cargo build --verbose --features=fuzztarget
  - cargo build --verbose --features=rand
  - cargo test --verbose --features=rand
  - cargo test --verbose --features="rand serde"
  - cargo build --verbose
  - cargo test --verbose
  - cargo build --release
  - cargo test --release
  - cargo bench
  - if [ "$(rustup show | grep default | grep stable)" != "" ]; then cargo doc; fi