From 7f489f3ccff89b99abfa984bebd7a21d0e294ad3 Mon Sep 17 00:00:00 2001 From: pinkforest <36498018+pinkforest@users.noreply.github.com> Date: Thu, 16 Dec 2021 15:53:52 +1100 Subject: [PATCH] Bumps to 0.1.1 --- Cargo.toml | 12 ++++++------ README.md | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8c4b14f..a1f756a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ maintenance = { status = "actively-developed" } [package] name = "gis_puller" -version = "0.1.0" +version = "0.1.1" authors = ["pinkforest"] description = "Geographic Information System (GIS) datasets acquisition library." homepage = "https://github.com/pinkforest/gis_puller" @@ -23,12 +23,12 @@ rust = "1.47" [dependencies] # camino = "1.0.4" in future if we want to enforce UTF-8 paths config = "0.11.0" -once_cell = "1.7.2" +once_cell = "1.9.0" quick-error = "2.0.1" regex = "1.5.4" -reqwest = { version = "0.11.3", features = ["json"] } -serde = { version = "1.0.125", features = ["derive"] } -serde_json = "1.0.64" +reqwest = { version = "0.11.7", features = ["json"] } +serde = { version = "1.0.131", features = ["derive"] } +serde_json = "1.0.73" state = "0.5.2" validator = { version = "0.14.0", features = ["derive", "unic"] } @@ -37,7 +37,7 @@ full = [] nightly = [] [dev-dependencies] -tokio = { version = "1.5.0", features = ["full"] } +tokio = { version = "1.15.0", features = ["full"] } rstest = "0.12.0" rstest_reuse = "0.1.3" httpmock = "0.6.4" diff --git a/README.md b/README.md index edd451f..6a93ff8 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,6 @@ cargo clippy --all-targets --all-features ``` Run [tarpaulin](https://github.com/xd009642/tarpaulin) for code/examples test coverage -__BROKEN: Waiting fix on [httpmock/issues/#45](https://github.com/alexliesenfeld/httpmock/issues/45) workaround manually with the Cargo env__ ```bash env GIS_CONFIG_PATH=config TEST_DATA_PATH=test_data RUN_MODE=development cargo +nightly tarpaulin --run-types Tests,Doctests,Benchmarks,Examples,Lib,Bins -v ```