cookie 0.12.0

Crate for parsing HTTP cookie headers and managing a cookie jar. Supports signed and private (encrypted + signed) jars.
Documentation
language: rust
matrix:
  include:
    - rust: stable
    - rust: beta
    - rust: nightly

    - name: "master doc to gh-pages"
      rust: nightly
      script:
        - cargo doc --no-deps
      deploy:
        provider: script
        script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
        skip_cleanup: true
        on:
          branch: master

script:
  - cargo build --verbose
  - cargo test --verbose --no-default-features
  - cargo test --verbose
  - cargo test --verbose --features percent-encode
  - cargo test --verbose --features secure
  - cargo test --verbose --all-features
  - rustdoc --test README.md -L target

notifications:
  email:
    on_success: never