Skip to content

Commit

Permalink
release: esthri: version 11.0.0
Browse files Browse the repository at this point in the history
silverjam committed Sep 21, 2023
1 parent 2265159 commit 3a405ae
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/esthri-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "esthri-cli"
description = "Extremely simple (memory stable) S3 client that supports get, put, head, list, and sync."
version = "10.0.7"
version = "11.0.0"
authors = ["Swift Navigation <dev@swift-nav.com>"]
edition = "2018"
license = "MIT"
@@ -28,7 +28,7 @@ name = "esthri_server"
path = "src/http_server.rs"

[dependencies]
esthri = { version = "10.0.7", path = "../esthri", default-features = false }
esthri = { version = "11.0.0", path = "../esthri", default-features = false }
anyhow = { version = "1", features = ["backtrace"] }
async-compression = { version = "0.4", features = ["gzip", "tokio"] }
async_zip = "0.0.7"
2 changes: 1 addition & 1 deletion crates/esthri-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "esthri-test"
description = "Tests for esthri"
version = "10.0.7"
version = "11.0.0"
authors = ["Swift Navigation <dev@swift-nav.com>"]
edition = "2018"
license = "MIT"
6 changes: 3 additions & 3 deletions crates/esthri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "esthri"
description = "Extremely simple (memory stable) S3 client that supports get, put, head, list, and sync."
version = "10.0.7"
version = "11.0.0"
authors = ["Swift Navigation <dev@swift-nav.com>"]
edition = "2018"
license = "MIT"
@@ -14,7 +14,7 @@ rust-version = "1.72.0"
[features]
default = ["blocking", "rustls"]
aggressive_lint = []
blocking = ["tokio/rt"]
blocking = ["tokio/rt", "tokio/macros", "tokio/rt-multi-thread"]
nativetls = ["esthri-internals/nativetls", "reqwest/native-tls"]
rustls = ["esthri-internals/rustls", "reqwest/rustls-tls"]

@@ -25,7 +25,7 @@ bytes = "1"
chrono = "0.4"
derive_builder = "0.12.0"
envy = "0.4"
futures = { version = "0.3", default-features = false }
futures = { version = "0.3", features = ["std"], default-features = false }
glob = "0.3"
hex = "0.4"
log = "0.4"

0 comments on commit 3a405ae

Please sign in to comment.