-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump deps and build nightly for Hiqlite testing (#621)
* update deps + major version bumps + nightly version + fix issues * update recipes and `Dockerfile`s to make them work again * make `DATABASE_URL` optional for better UX in prod * fix DB check in webauthn `auth_finish()` * bump nightly version and build new image
- Loading branch information
Showing
18 changed files
with
968 additions
and
552 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ members = ["src/*"] | |
exclude = ["rauthy-client"] | ||
|
||
[workspace.package] | ||
version = "0.27.0-20241031" | ||
version = "0.27.0-20241119" | ||
edition = "2021" | ||
authors = ["Sebastian Dobe <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -39,11 +39,11 @@ askama_actix = "0.14" | |
async-trait = "0.1.74" | ||
base64 = "0.22.0" | ||
bincode = "1" | ||
cached = "0.53.1" | ||
cached = "0.54" | ||
chacha20poly1305 = { version = "0.10", features = ["std"] } | ||
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "std"] } | ||
cidr = "0.3.0" | ||
cron = "0.12" | ||
cron = "0.13" | ||
cryptr = { version = "0.5.1", features = ["s3", "streaming"] } | ||
css-color = "0.2" | ||
derive_more = "1" | ||
|
@@ -54,7 +54,7 @@ futures = "0.3" | |
futures-util = "0.3" | ||
gethostname = "0.5.0" | ||
hex = { version = "0.4", features = ["serde"] } | ||
hiqlite = { version = "0.2.1", features = ["full"] } | ||
hiqlite = { version = "0.3.0-20241115", features = ["full"] } | ||
hmac-sha256 = { version = "1.1.7", features = ["traits010"] } | ||
hmac-sha512 = { version = "1.1.5", features = ["traits010", "sha384"] } | ||
image = { version = "0.25.1", default-features = false, features = [ | ||
|
@@ -91,7 +91,7 @@ rustls-pemfile = "2.1.2" | |
semver = { version = "1.0.19", features = ["serde"] } | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
serde_json_path = "0.6.7" | ||
serde_json_path = "0.7.1" | ||
serde_with = { version = "3.8.1", features = ["macros"] } | ||
spow = { version = "0.4", features = ["server"] } | ||
sqlx = { version = "0.8.2", features = ["macros", "migrate", "postgres", "runtime-tokio", "sqlite", "tls-rustls", "uuid"] } | ||
|
@@ -101,9 +101,10 @@ time = { version = "0.3", features = ["formatting", "local-offset", "macros", "p | |
tracing = { version = "0.1", features = ["attributes"] } | ||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "tracing"] } | ||
tokio = { version = "1", features = ["full"] } | ||
utoipa = { version = "4", features = ["actix_extras", "chrono", "openapi_extensions"] } | ||
utoipa-swagger-ui = { version = "=7.0.1", features = ["actix-web"] } | ||
utoipa = { version = "5", features = ["actix_extras", "chrono", "openapi_extensions"] } | ||
utoipa-swagger-ui = { version = "8.0.3", features = ["actix-web"] } | ||
uuid = { version = "1", features = ["serde", "v4"] } | ||
# update to 0.19 blocked by `actix-web-validator` | ||
validator = { version = "0.18", features = ["derive"] } | ||
webauthn-rs = { version = "0.5", features = [ | ||
"danger-allow-state-serialisation", "danger-credential-internals" | ||
|
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.