Compare commits
56 Commits
97ee1d891a
...
942908ca35
| Author | SHA1 | Date | |
|---|---|---|---|
| 942908ca35 | |||
| eace55a4e8 | |||
| 25a898b219 | |||
| eeba5d4771 | |||
| 0a2b512b1d | |||
| 572837bf70 | |||
| 36f9d9bc61 | |||
| 348222f36c | |||
| 3df5851ab5 | |||
| 34c9c7d5f3 | |||
| 939ceea272 | |||
| ec508607e7 | |||
| 606add4f12 | |||
| 83a8ecf797 | |||
| 29fc7985dd | |||
| 2ddba2fd01 | |||
| d806823773 | |||
| 141d8cf7c2 | |||
| f39bad6499 | |||
| d591307a22 | |||
| e26c23efb6 | |||
| d638122d3a | |||
| 3b0f77e8d3 | |||
| 823ccdfc27 | |||
| a217d5dbb0 | |||
| 07ad3e613e | |||
| 295b90946b | |||
| 8f37ae840d | |||
| 8a2ff91cdc | |||
| 5f6f2c02ad | |||
| b88ff0340c | |||
| 3001ce4276 | |||
| 763a6e7ca2 | |||
| be163e81e6 | |||
| e6c3e22bf9 | |||
| 335a60d717 | |||
| 1b1e5c1af7 | |||
| e2e70a3c41 | |||
| 6d46d5e96b | |||
| e7a7c5910e | |||
| 0f9042aa4b | |||
| 7ed3a30d5a | |||
| 03207ba7cb | |||
| 4aaeb75bf3 | |||
| c0aded3ef0 | |||
| 6cdf7a43da | |||
| be5554664a | |||
| 30ff72f409 | |||
| 5517a42c1c | |||
| ad666aace9 | |||
| 004ea96f59 | |||
| 8c9b211a50 | |||
| 1bc1d185b6 | |||
| fde97ce507 | |||
| dce6aa6330 | |||
| b4c7a9ed26 |
476
Cargo.lock
generated
476
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
32
Cargo.toml
32
Cargo.toml
@@ -7,35 +7,35 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix = "0.13.1"
|
actix = "0.13.1"
|
||||||
actix-identity = "0.5.2"
|
actix-identity = "0.7.0"
|
||||||
actix-web = "4"
|
actix-web = "4"
|
||||||
actix-session = { version = "0.7.2", features = ["cookie-session"] }
|
actix-session = { version = "0.9.0", features = ["cookie-session"] }
|
||||||
actix-remote-ip = "0.1.0"
|
actix-remote-ip = "0.1.0"
|
||||||
clap = { version = "4.4.3", features = ["derive", "env"] }
|
clap = { version = "4.4.18", features = ["derive", "env"] }
|
||||||
include_dir = "0.7.3"
|
include_dir = "0.7.3"
|
||||||
log = "0.4.20"
|
log = "0.4.20"
|
||||||
serde_json = "1.0.104"
|
serde_json = "1.0.111"
|
||||||
serde_yaml = "0.9.25"
|
serde_yaml = "0.9.30"
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.11.0"
|
||||||
serde = { version = "1.0.181", features = ["derive"] }
|
serde = { version = "1.0.195", features = ["derive"] }
|
||||||
bcrypt = "0.15.0"
|
bcrypt = "0.15.0"
|
||||||
uuid = { version = "1.4.1", features = ["v4"] }
|
uuid = { version = "1.6.1", features = ["v4"] }
|
||||||
mime_guess = "2.0.4"
|
mime_guess = "2.0.4"
|
||||||
askama = "0.12.0"
|
askama = "0.12.1"
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.30"
|
||||||
urlencoding = "2.1.3"
|
urlencoding = "2.1.3"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
base64 = "0.21.3"
|
base64 = "0.21.7"
|
||||||
jwt-simple = "0.11.6"
|
jwt-simple = { version = "0.12.7", default-features=false, features=["pure-rust"] }
|
||||||
digest = "0.10.7"
|
digest = "0.10.7"
|
||||||
sha2 = "0.10.7"
|
sha2 = "0.10.8"
|
||||||
lazy-regex = "3.0.2"
|
lazy-regex = "3.1.0"
|
||||||
totp_rfc6238 = "0.5.1"
|
totp_rfc6238 = "0.5.1"
|
||||||
base32 = "0.4.0"
|
base32 = "0.4.0"
|
||||||
qrcode-generator = "4.1.9"
|
qrcode-generator = "4.1.9"
|
||||||
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
|
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
|
||||||
url = "2.4.1"
|
url = "2.5.0"
|
||||||
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
|
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
|
||||||
bincode = "2.0.0-rc.3"
|
bincode = "2.0.0-rc.3"
|
||||||
chrono = "0.4.31"
|
chrono = "0.4.32"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
Reference in New Issue
Block a user