mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
63a686d390
* Implement tests for registration application count and list api * Use transaction when approving applications to ensure consistent approval state
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "lemmy_api"
|
|
publish = false
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "lemmy_api"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[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_moderator = { 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 }
|
|
base64 = { workspace = true }
|
|
captcha = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
url = { workspace = true }
|
|
hound = "3.5.1"
|
|
sitemap-rs = "0.2.1"
|
|
totp-rs = { version = "5.6.0", features = ["gen_secret", "otpauth"] }
|
|
actix-web-httpauth = "0.8.2"
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
tokio = { workspace = true }
|
|
elementtree = "1.2.3"
|
|
pretty_assertions = { workspace = true }
|
|
lemmy_api_crud = { workspace = true }
|