-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f1c0a5
commit af86332
Showing
16 changed files
with
103 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"aliri": "0.6.3", | ||
"aliri_actix": "0.9.1", | ||
"aliri_axum": "0.4.0", | ||
"aliri": "0.6.4", | ||
"aliri_actix": "0.9.2", | ||
"aliri_axum": "0.4.1", | ||
"aliri_base64": "0.1.8", | ||
"aliri_clock": "0.1.4", | ||
"aliri_marcos": "0.1.2", | ||
"aliri_oauth2": "0.10.1", | ||
"aliri_reqwest": "0.5.0", | ||
"aliri_tokens": "0.3.1", | ||
"aliri_tower": "0.6.0", | ||
"aliri_oauth2": "0.10.2", | ||
"aliri_reqwest": "0.5.1", | ||
"aliri_tokens": "0.3.2", | ||
"aliri_tower": "0.6.1", | ||
"aliri_traits": "0.1.1", | ||
"aliri_warp": "0.9.0" | ||
"aliri_warp": "0.9.1" | ||
} |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri" | |
description = "Implementations of the Javascript/JSON Object Signing and Encryption (JOSE) standards" | ||
keywords = [ "jwk", "jwa", "jose", "jwt", "auth" ] | ||
categories = [ "authentication" ] | ||
version = "0.6.3" | ||
version = "0.6.4" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2018" | ||
readme = "../README.md" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_actix" | |
description = "Actix for interacting with `aliri` authorities" | ||
keywords = [ "actix", "jose", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication", "web-programming", "web-programming::http-server" ] | ||
version = "0.9.1" | ||
version = "0.9.2" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2018" | ||
readme = "../README.md" | ||
|
@@ -14,9 +14,9 @@ repository = "https://github.com/neoeinstein/aliri" | |
|
||
[dependencies] | ||
actix-web = { version = "4", default-features = false } | ||
aliri = { version = "0.6.0", path = "../aliri" } | ||
aliri = { version = "0.6.4", path = "../aliri" } | ||
aliri_traits = { version = "0.1.0", path = "../aliri_traits" } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2" } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2" } | ||
futures = "0.3" | ||
once_cell = "1.19" | ||
serde = { version = "1", features = [ "derive" ] } | ||
|
@@ -28,7 +28,7 @@ actix-rt = "2" | |
actix-web = { version = "4", default-features = false, features = ["macros"] } | ||
aliri_base64 = { version = "0.1.0", path = "../aliri_base64" } | ||
aliri_clock = { version = "0.1.0", path = "../aliri_clock" } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
color-eyre = "0.6" | ||
regex = "1" | ||
serde_json = "1" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_axum" | |
description = "Axum for interacting with `aliri` authorities" | ||
keywords = [ "axum", "jose", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication", "web-programming", "web-programming::http-server" ] | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
@@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
aliri = { version = "0.6.0", path = "../aliri", default-features = false } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", default-features = false } | ||
aliri = { version = "0.6.4", path = "../aliri", default-features = false } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", default-features = false } | ||
aliri_traits = { version = "0.1.1", path = "../aliri_traits" } | ||
axum-core = "0.4.3" | ||
http = "1.1.0" | ||
|
@@ -24,8 +24,8 @@ once_cell = "1" | |
aliri_base64 = { version = "0.1.5", path = "../aliri_base64" } | ||
aliri_braid = "0.4.0" | ||
aliri_clock = { version = "0.1.4", path = "../aliri_clock" } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] } | ||
aliri_tower = { version = "0.6.0", path = "../aliri_tower" } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] } | ||
aliri_tower = { version = "0.6.1", path = "../aliri_tower" } | ||
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2"] } | ||
color-eyre = "0.6.3" | ||
reqwest = "0.12.3" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_oauth2" | |
description = "JWT authorization based on validating OAuth2 scopes" | ||
keywords = [ "jose", "jwk", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication" ] | ||
version = "0.10.1" | ||
version = "0.10.2" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2018" | ||
readme = "../README.md" | ||
|
@@ -24,7 +24,7 @@ rustc-args = ["--cfg", "docsrs"] | |
features = [ "rsa", "ec", "hmac", "private-keys", "reqwest" ] | ||
|
||
[dependencies] | ||
aliri = { version = "0.6.1", path = "../aliri", default-features = false } | ||
aliri = { version = "0.6.4", path = "../aliri", default-features = false } | ||
aliri_clock = { version = "0.1.0", path = "../aliri_clock" } | ||
aliri_traits = { version = "0.1.0", path = "../aliri_traits" } | ||
aliri_braid = { version = "0.4.0" } | ||
|
@@ -37,7 +37,7 @@ tokio = { version = "1", features = [ "time" ], optional = true } | |
tracing = "0.1.40" | ||
|
||
[dev-dependencies] | ||
aliri = { version = "0.6.0", path = "../aliri", features = [ "private-keys" ] } | ||
aliri = { version = "0.6.4", path = "../aliri", features = [ "private-keys" ] } | ||
openssl = "0.10" | ||
serde_json = "1" | ||
tokio = { version = "1", features = [ "rt-multi-thread", "macros" ] } | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_reqwest" | |
description = "Background token management and renewal for reqwest based on best practices" | ||
keywords = [ "reqwest", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication" ] | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/neoeinstein/aliri" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
aliri_tokens = { version = "0.3.0", path = "../aliri_tokens" } | ||
aliri_tokens = { version = "0.3.2", path = "../aliri_tokens" } | ||
aliri_clock = { version = "0.1.4", path = "../aliri_clock" } | ||
async-trait = "0.1.79" | ||
bytes = "1.6.0" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_tokens" | |
description = "Background token management and renewal based on best practices" | ||
keywords = [ "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication" ] | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2018" | ||
readme = "../README.md" | ||
|
@@ -21,7 +21,7 @@ oauth2 = ["reqwest"] | |
rustc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
aliri = { version = "0.6.0", path = "../aliri" } | ||
aliri = { version = "0.6.4", path = "../aliri" } | ||
aliri_braid = "0.4.0" | ||
aliri_clock = { version = "0.1.4", path = "../aliri_clock" } | ||
async-trait = "0.1.79" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_tower" | |
description = "Tower middleware for interacting with `aliri` authorities" | ||
keywords = [ "tower", "jose", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication", "web-programming", "web-programming::http-server" ] | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
@@ -13,9 +13,9 @@ repository = "https://github.com/neoeinstein/aliri" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
aliri = { version = "0.6.0", path = "../aliri" } | ||
aliri = { version = "0.6.4", path = "../aliri" } | ||
aliri_traits = { version = "0.1.1", path = "../aliri_traits" } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
bytes = "1.6.0" | ||
http = "1.1" | ||
http-body = "1.0" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "aliri_warp" | |
description = "Warp filters for interacting with `aliri` authorities" | ||
keywords = [ "warp", "jose", "jwt", "oauth2", "auth" ] | ||
categories = [ "authentication", "web-programming", "web-programming::http-server" ] | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Marcus Griep <[email protected]>"] | ||
edition = "2018" | ||
readme = "../README.md" | ||
|
@@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
aliri = { version = "0.6.0", path = "../aliri" } | ||
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
aliri = { version = "0.6.4", path = "../aliri" } | ||
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } | ||
serde = { version = "1", features = [ "derive" ] } | ||
thiserror = "1" | ||
tracing = "0.1" | ||
|