-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from 06chaynes/develop
fix missing reload logic, bump versions
- Loading branch information
Showing
22 changed files
with
196 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "http-cache-darkbird" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "http-cache manager implementation for darkbird" | ||
authors = ["Christian Haynes <[email protected]>", "Kat Marchán <[email protected]>"] | ||
repository = "https://github.com/06chaynes/http-cache" | ||
|
@@ -13,27 +13,27 @@ categories = [ | |
"web-programming::http-client" | ||
] | ||
edition = "2021" | ||
rust-version = "1.70.0" | ||
rust-version = "1.71.1" | ||
|
||
[dependencies] | ||
async-trait = "0.1.72" | ||
darkbird = "6.1.8" | ||
async-trait = "0.1.85" | ||
darkbird = "6.2.4" | ||
http-cache-semantics = "2.1.0" | ||
serde = { version = "1.0.178", features = ["derive"] } | ||
thiserror = "2.0.3" | ||
serde = { version = "1.0.217", features = ["derive"] } | ||
thiserror = "2.0.11" | ||
|
||
[dependencies.http-cache] | ||
path = "../http-cache" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
http = "1.1.0" | ||
reqwest = { version = "0.12.3", default-features = false } | ||
http = "1.2.0" | ||
reqwest = { version = "0.12.12", default-features = false } | ||
reqwest-middleware = "0.4.0" | ||
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
wiremock = "0.6.0" | ||
url = { version = "2.4.0", features = ["serde"] } | ||
tokio = { version = "1.43.0", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
wiremock = "0.6.2" | ||
url = { version = "2.5.4", features = ["serde"] } | ||
|
||
[dev-dependencies.http-cache-reqwest] | ||
path = "../http-cache-reqwest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "http-cache-mokadeser" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "http-cache manager implementation for moka stored deserialized" | ||
authors = ["Christian Haynes <[email protected]>", "Kat Marchán <[email protected]>"] | ||
repository = "https://github.com/06chaynes/http-cache" | ||
|
@@ -13,26 +13,26 @@ categories = [ | |
"web-programming::http-client" | ||
] | ||
edition = "2021" | ||
rust-version = "1.67.1" | ||
rust-version = "1.71.1" | ||
|
||
[dependencies] | ||
async-trait = "0.1.72" | ||
async-trait = "0.1.85" | ||
http-cache-semantics = "2.1.0" | ||
moka = { version = "0.12.0", features = ["future"]} | ||
moka = { version = "0.12.10", features = ["future"]} | ||
|
||
[dependencies.http-cache] | ||
path = "../http-cache" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
default-features = false | ||
features = ["bincode"] | ||
|
||
[dev-dependencies] | ||
http = "1.1.0" | ||
reqwest = { version = "0.12.3", default-features = false } | ||
http = "1.2.0" | ||
reqwest = { version = "0.12.12", default-features = false } | ||
reqwest-middleware = "0.4.0" | ||
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
url = { version = "2.4.0", features = ["serde"] } | ||
wiremock = "0.6.0" | ||
tokio = { version = "1.43.0", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
url = { version = "2.5.4", features = ["serde"] } | ||
wiremock = "0.6.2" | ||
|
||
[dev-dependencies.http-cache-reqwest] | ||
path = "../http-cache-reqwest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "http-cache-quickcache" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
description = "http-cache manager implementation for quick-cache" | ||
authors = ["Christian Haynes <[email protected]>", "Kat Marchán <[email protected]>"] | ||
repository = "https://github.com/06chaynes/http-cache" | ||
|
@@ -16,25 +16,25 @@ edition = "2021" | |
rust-version = "1.71.1" | ||
|
||
[dependencies] | ||
async-trait = "0.1.72" | ||
async-trait = "0.1.85" | ||
bincode = "1.3.3" | ||
http-cache-semantics = "2.1.0" | ||
serde = { version = "1.0.178", features = ["derive"] } | ||
url = { version = "2.4.0", features = ["serde"] } | ||
serde = { version = "1.0.217", features = ["derive"] } | ||
url = { version = "2.5.4", features = ["serde"] } | ||
quick_cache = "0.6.9" | ||
|
||
[dependencies.http-cache] | ||
path = "../http-cache" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
default-features = false | ||
features = ["bincode"] | ||
|
||
[dev-dependencies] | ||
http = "1.1.0" | ||
reqwest = { version = "0.12.3", default-features = false } | ||
http = "1.2.0" | ||
reqwest = { version = "0.12.12", default-features = false } | ||
reqwest-middleware = "0.4.0" | ||
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
wiremock = "0.6.0" | ||
tokio = { version = "1.43.0", features = [ "macros", "rt", "rt-multi-thread" ] } | ||
wiremock = "0.6.2" | ||
|
||
[dev-dependencies.http-cache-reqwest] | ||
path = "../http-cache-reqwest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "http-cache-reqwest" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
description = "http-cache middleware implementation for reqwest" | ||
authors = ["Christian Haynes <[email protected]>", "Kat Marchán <[email protected]>"] | ||
repository = "https://github.com/06chaynes/http-cache" | ||
|
@@ -13,24 +13,25 @@ categories = [ | |
"web-programming::http-client" | ||
] | ||
edition = "2021" | ||
rust-version = "1.71.1" | ||
|
||
[dependencies] | ||
anyhow = "1.0.72" | ||
async-trait = "0.1.72" | ||
http = "1.1.0" | ||
anyhow = "1.0.95" | ||
async-trait = "0.1.85" | ||
http = "1.2.0" | ||
http-cache-semantics = "2.1.0" | ||
reqwest = { version = "0.12.3", default-features = false } | ||
reqwest = { version = "0.12.12", default-features = false } | ||
reqwest-middleware = "0.4.0" | ||
serde = { version = "1.0.178", features = ["derive"] } | ||
url = { version = "2.4.0", features = ["serde"] } | ||
serde = { version = "1.0.217", features = ["derive"] } | ||
url = { version = "2.5.4", features = ["serde"] } | ||
|
||
[dependencies.http-cache] | ||
path = "../http-cache" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } | ||
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } | ||
wiremock = "0.6.0" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.