mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
fcc010b5dc
* Fix concatenation of audio captcha wav files * Log errors rather than crashing * Return Result from captcha_as_wav_base64 * Change to return LemmyError * Check for wav write error, format * Remove unused import * Rewrite to avoid clippy warnings
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "lemmy_api"
|
|
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
|
|
|
|
[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"] }
|
|
bcrypt = { workspace = true }
|
|
serde = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
base64 = { workspace = true }
|
|
uuid = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
captcha = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
wav = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
tokio = { workspace = true }
|