Dependency updates (#255)

This commit is contained in:
Daniël Heres 2020-08-05 08:12:13 +02:00 committed by GitHub
parent 61431b087d
commit 5f3a40e772
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ jobs:
uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: 0.13.3
version: 0.14.2
use-tool-cache: true
- name: Checkout
uses: actions/checkout@v2

View file

@ -23,8 +23,8 @@ path = "src/lib.rs"
json_example = ["serde_json", "serde"]
[dependencies]
bigdecimal = { version = "0.1.0", features = ["serde"], optional = true }
log = "0.4.5"
bigdecimal = { version = "0.1", features = ["serde"], optional = true }
log = "0.4"
serde = { version = "1.0", features = ["derive"], optional = true }
# serde_json is only used in examples/cli, but we have to put it outside
# of dev-dependencies because of
@ -32,5 +32,5 @@ serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
simple_logger = "1.0.1"
simple_logger = "1.6"
matches = "0.1"