Skip to content

Commit

Permalink
core: Bump secrecy to v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Aug 21, 2019
1 parent c0456d8 commit c2ee058
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 17 deletions.
16 changes: 9 additions & 7 deletions .travis.yml
@@ -1,11 +1,6 @@
language: rust
cache: cargo

install:
- rustup component add rustfmt
- rustup component add clippy
- command -v cargo-audit >/dev/null 2>&1 || cargo install cargo-audit

branches:
only:
- develop
Expand All @@ -14,6 +9,10 @@ env:
global:
- RUST_BACKTRACE=1

install:
- rustup component add rustfmt
- rustup component add clippy

matrix:
allow_failures:
- os: osx
Expand All @@ -25,8 +24,8 @@ matrix:
script:
- cargo build --no-default-features --lib
- cargo build --release --all --all-features
- name: test (rustc 1.35.0)
rust: 1.35.0
- name: test (rustc 1.36.0)
rust: 1.36.0
os: linux
script:
- cargo test --release --all --all-features
Expand All @@ -47,11 +46,14 @@ matrix:
- cargo fmt -- --check
- name: clippy
rust: stable
os: linux
script:
- cargo clippy
- name: audit
rust: stable
os: linux
install:
- command -v cargo-audit >/dev/null 2>&1 || cargo install cargo-audit
script:
- cargo audit
- name: doc
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -3,7 +3,7 @@
[![Crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Apache 2.0 Licensed][license-image]][license-link]
![Rust 1.35+][rustc-image]
![MSRV][rustc-image]
[![forbid(unsafe_code)][unsafe-image]][unsafe-link]
[![Build Status][build-image]][build-link]
[![Appveyor Status][appveyor-image]][appveyor-link]
Expand Down Expand Up @@ -57,7 +57,7 @@ Abscissa presently consists of three crates:

## Requirements

- Rust 1.35+
- Rust **1.36+**

## Installation

Expand Down Expand Up @@ -315,7 +315,7 @@ read the [CONTRIBUTING.md] and [CODE_OF_CONDUCT.md] files first.
[docs-link]: https://docs.rs/abscissa_core/
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
[license-link]: https://github.com/iqlusioninc/abscissa/blob/develop/LICENSE
[rustc-image]: https://img.shields.io/badge/rustc-1.35+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.36+-blue.svg
[unsafe-image]: https://img.shields.io/badge/unsafe-forbidden-success.svg
[unsafe-link]: https://internals.rust-lang.org/t/disabling-unsafe-by-default/7988
[build-image]: https://travis-ci.com/iqlusioninc/abscissa.svg?branch=develop
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -29,7 +29,7 @@ gumdrop = { version = "0.6", optional = true }
lazy_static = "1"
log = { version = "0.4", optional = true, features = ["std"] }
regex = { version = "1", optional = true }
secrecy = { version = "0.2", optional = true, features = ["serde"] }
secrecy = { version = "0.3", optional = true, features = ["serde"] }
semver = { version = "0.9", optional = true }
serde = { version = "1", optional = true, features = ["serde_derive"] }
termcolor = { version = "1", optional = true }
Expand Down

0 comments on commit c2ee058

Please sign in to comment.