This commit is contained in:
661
moneymgr_backend/Cargo.lock
generated
661
moneymgr_backend/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,33 +6,34 @@ edition = "2024"
|
||||
[dependencies]
|
||||
env_logger = "0.11.8"
|
||||
log = "0.4.27"
|
||||
diesel = { version = "2.2.0", features = ["postgres", "r2d2"] }
|
||||
diesel = { version = "2.2.10", features = ["postgres", "r2d2"] }
|
||||
diesel_migrations = "2.1.0"
|
||||
clap = { version = "4.5.35", features = ["env", "derive"] }
|
||||
actix-web = "4"
|
||||
actix-cors = "0.7.0"
|
||||
actix-multipart = "0.7.0"
|
||||
clap = { version = "4.5.38", features = ["env", "derive"] }
|
||||
actix-web = "4.11.0"
|
||||
actix-cors = "0.7.1"
|
||||
actix-multipart = "0.7.2"
|
||||
actix-remote-ip = "0.1.0"
|
||||
actix-session = { version = "0.10.0", features = ["redis-session"] }
|
||||
actix-files = "0.6.6"
|
||||
lazy_static = "1.5.0"
|
||||
anyhow = "1.0.97"
|
||||
anyhow = "1.0.98"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
rust-s3 = "0.36.0-beta.2"
|
||||
thiserror = "2.0.12"
|
||||
tokio = "1.44.1"
|
||||
tokio = "1.45.0"
|
||||
futures-util = "0.3.31"
|
||||
serde_json = "1.0.140"
|
||||
light-openid = "1.0.4"
|
||||
rand = "0.9.0"
|
||||
rand = "0.9.1"
|
||||
ipnet = { version = "2.11.0", features = ["serde"] }
|
||||
lazy-regex = "3.4.1"
|
||||
jwt-simple = { version = "0.12.11", default-features = false, features = ["pure-rust"] }
|
||||
mime_guess = "2.0.5"
|
||||
rust-embed = { version = "8.6.0" }
|
||||
sha2 = "0.10.8"
|
||||
rust-embed = { version = "8.7.2" }
|
||||
sha2 = "0.11.0-pre.5"
|
||||
base16ct = "0.2.0"
|
||||
httpdate = "1.0.3"
|
||||
chrono = "0.4.41"
|
||||
tempfile = "3.19.1"
|
||||
zip = "2.6.1"
|
||||
rust_xlsxwriter = "0.86.1"
|
||||
tempfile = "3.20.0"
|
||||
zip = "3.0.0"
|
||||
rust_xlsxwriter = "0.87.0"
|
@ -5,5 +5,5 @@ pub fn sha512(bytes: &[u8]) -> String {
|
||||
let mut hasher = Sha512::new();
|
||||
hasher.update(bytes);
|
||||
let h = hasher.finalize();
|
||||
format!("{:x}", h)
|
||||
base16ct::lower::encode_string(h.as_slice())
|
||||
}
|
||||
|
Reference in New Issue
Block a user