2020-07-10 14:15:41 -04:00
|
|
|
[package]
|
|
|
|
name = "lemmy_utils"
|
2022-11-17 10:23:01 -05:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 11:38:00 -05:00
|
|
|
repository.workspace = true
|
2020-07-10 14:15:41 -04:00
|
|
|
|
2020-09-02 11:42:48 -04:00
|
|
|
[lib]
|
|
|
|
name = "lemmy_utils"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 14:43:39 -05:00
|
|
|
doctest = false
|
2020-09-02 11:42:48 -04:00
|
|
|
|
2020-07-10 14:15:41 -04:00
|
|
|
[dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
regex = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-error = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
reqwest-middleware = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
diesel = { workspace = true, features = ["chrono"] }
|
|
|
|
http = { workspace = true }
|
|
|
|
doku = { workspace = true, features = ["url-2"] }
|
|
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
|
|
rosetta-i18n = { workspace = true }
|
|
|
|
typed-builder = { workspace = true }
|
|
|
|
percent-encoding = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2022-11-09 05:05:00 -05:00
|
|
|
openssl = "0.10.42"
|
2022-11-17 10:23:01 -05:00
|
|
|
html2text = "0.4.3"
|
2021-08-17 16:31:16 -04:00
|
|
|
deser-hjson = "1.0.2"
|
2021-08-04 17:13:51 -04:00
|
|
|
smart-default = "0.6.0"
|
2022-09-26 10:09:32 -04:00
|
|
|
jsonwebtoken = "8.1.1"
|
2022-11-17 10:23:01 -05:00
|
|
|
lettre = "0.10.1"
|
2023-06-14 07:15:59 -04:00
|
|
|
markdown-it = "0.5.0"
|
2023-03-02 15:37:41 -05:00
|
|
|
totp-rs = { version = "4.2.0", features = ["gen_secret", "otpauth"] }
|
2022-03-24 11:25:51 -04:00
|
|
|
|
2023-02-23 09:51:33 -05:00
|
|
|
[dev-dependencies]
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["macros"] }
|
|
|
|
|
2022-03-24 11:25:51 -04:00
|
|
|
[build-dependencies]
|
2022-04-01 14:37:51 -04:00
|
|
|
rosetta-build = "0.1.2"
|