mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 17:34:16 +00:00
4ef00e068f
* Prevent crates that shouldn't be published from being published * Make dependent crates publishable * Make dependent crates publishable * fix toml formatting * Removing publish=true * Removing versioned deps. --------- Co-authored-by: SleeplessOne1917 <insomnia-void@protonmail.com> Co-authored-by: Dessalines <tyhou13@gmx.com>
35 lines
931 B
TOML
35 lines
931 B
TOML
[package]
|
|
name = "lemmy_api_crud"
|
|
publish = false
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
lemmy_utils = { workspace = true }
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
lemmy_db_views_actor = { workspace = true, features = ["full"] }
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
activitypub_federation = { workspace = true }
|
|
bcrypt = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
futures.workspace = true
|
|
uuid = { workspace = true }
|
|
moka.workspace = true
|
|
once_cell.workspace = true
|
|
anyhow.workspace = true
|
|
webmention = "0.5.0"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["futures"]
|