-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies, apply clippy lints This updates dependencies over the crates as a whole. Additionally apply clippy lints. * Update to upstream mozilla which supports ctap2
- Loading branch information
Showing
30 changed files
with
256 additions
and
241 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
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,5 +1,5 @@ | ||
[package] | ||
name = "actix_web" | ||
name = "actix_tutorial" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Niklas Pfister <[email protected]>"] | ||
|
@@ -10,7 +10,7 @@ authors = ["Niklas Pfister <[email protected]>"] | |
# Webframework | ||
actix-web = { version = ">=4.5.1" } | ||
# Session framework for actix-web | ||
actix-session = { version = "~0.9", features = ["cookie-session"] } | ||
actix-session = { version = "~0.10", features = ["cookie-session"] } | ||
# Async trait, anyhow, chrono, once_cell and rand are required for the implementation of a | ||
# server-side memory-backed session store. | ||
# Normally, you want to use a database / redis backend as session store, but for the simplicity of this | ||
|
@@ -22,17 +22,17 @@ once_cell = { version = ">=1.18" } | |
rand = { workspace = true } | ||
|
||
# Nicer error management | ||
thiserror = { version = "~1" } | ||
thiserror = { version = "~2" } | ||
|
||
# Serve static file. Used to serve wasm | ||
actix-files = { version = "~0.6" } | ||
|
||
# Async runtime | ||
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } | ||
|
||
# Logging framework + facade | ||
env_logger = { version = "~0.10" } | ||
log = { version = "~0.4" } | ||
tracing.workspace = true | ||
tracing-subscriber.workspace = true | ||
tracing-log.workspace = true | ||
|
||
# Webauthn framework | ||
webauthn-rs = { workspace = true, features = ["danger-allow-state-serialisation"] } |
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,5 +1,5 @@ | ||
[package] | ||
name = "web_authn" | ||
name = "axum_tutorial" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["William Brown <[email protected]>, Ben Wishovich <[email protected]>"] | ||
|
@@ -12,14 +12,14 @@ tracing.workspace = true | |
tracing-subscriber.workspace = true | ||
serde.workspace = true | ||
webauthn-rs = { workspace = true, features = ["danger-allow-state-serialisation"] } | ||
axum = { version = "0.6.1", features = ["http2"] } | ||
axum = { version = "0.7" } | ||
tokio = { workspace = true, features = ["full"] } | ||
uuid = { workspace = true, features = ["v4"] } | ||
url.workspace = true | ||
thiserror.workspace = true | ||
tower = "0.4.13" | ||
tower-http = { version = "0.4.4", features = ["fs"] } | ||
tower-sessions = "0.6" | ||
tower = "0.5" | ||
tower-http = { version = "0.6", features = ["fs"] } | ||
tower-sessions = "0.13" | ||
|
||
[features] | ||
default = ["wasm"] | ||
|
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,5 +1,5 @@ | ||
[package] | ||
name = "tide-server" | ||
name = "tide_tutorial" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["William Brown <[email protected]>"] | ||
|
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,5 +1,5 @@ | ||
[package] | ||
name = "wasm" | ||
name = "wasm_tutorial" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["William Brown <[email protected]>"] | ||
|
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.