diff --git a/Cargo.lock b/Cargo.lock index 9217be579..491b7cc94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2539,6 +2539,7 @@ dependencies = [ "anyhow", "bcrypt", "chrono", + "futures", "lemmy_api_common", "lemmy_db_schema", "lemmy_db_views", diff --git a/crates/api_crud/Cargo.toml b/crates/api_crud/Cargo.toml index 05b88e211..d473641af 100644 --- a/crates/api_crud/Cargo.toml +++ b/crates/api_crud/Cargo.toml @@ -23,6 +23,7 @@ bcrypt = { workspace = true } actix-web = { workspace = true } tracing = { workspace = true } url = { workspace = true } +futures.workspace = true uuid = { workspace = true } moka.workspace = true anyhow.workspace = true @@ -35,3 +36,6 @@ serde_with = { workspace = true } [package.metadata.cargo-machete] ignored = ["futures"] + +[package.metadata.cargo-shear] +ignored = ["futures"]