Updated dependencies
This commit is contained in:
parent
5a276f2efc
commit
d064b8d571
900
Cargo.lock
generated
900
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,6 @@ pedantic = "warn"
|
||||
all = "warn"
|
||||
|
||||
[dependencies]
|
||||
ahash = "0.8"
|
||||
anyhow = { version = "1", features = ["backtrace"] }
|
||||
arrayvec = "0.7"
|
||||
base64 = "0.22"
|
||||
@ -28,9 +27,10 @@ derive_more = { version = "1", features = [
|
||||
"from",
|
||||
] }
|
||||
dotenvy = "0.15"
|
||||
foldhash = "0.1.4"
|
||||
futures = "0.3"
|
||||
hex = "0.4"
|
||||
itertools = "0.13"
|
||||
itertools = "0.14"
|
||||
parking_lot = "0.12"
|
||||
pbkdf2 = { version = "0.12", features = ["parallel"] }
|
||||
rand = { version = "0.8", default-features = false, features = [
|
||||
|
@ -60,7 +60,7 @@ async fn download_file(bot: &Throttle<Bot>, file: &FileMeta) -> crate::Result<Bo
|
||||
|
||||
fn process_accounts(
|
||||
accounts: &mut [DecryptedAccount],
|
||||
existing_names: ahash::HashSet<String>,
|
||||
existing_names: foldhash::HashSet<String>,
|
||||
locale: LocaleRef,
|
||||
) -> crate::Result<Result<(), String>> {
|
||||
for account in accounts.iter_mut() {
|
||||
@ -135,7 +135,7 @@ fn process_accounts(
|
||||
|
||||
fn user_from_bytes(
|
||||
bytes: impl AsRef<[u8]>,
|
||||
existing_names: ahash::HashSet<String>,
|
||||
existing_names: foldhash::HashSet<String>,
|
||||
locale: LocaleRef,
|
||||
) -> crate::Result<Result<User, String>> {
|
||||
let mut user: User = serde_json::from_slice(bytes.as_ref())?;
|
||||
|
Loading…
x
Reference in New Issue
Block a user