2020-09-01 10:25:34 -04:00
|
|
|
[package]
|
2021-03-25 15:19:40 -04:00
|
|
|
name = "lemmy_api_common"
|
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-09-01 10:25:34 -04:00
|
|
|
|
2020-09-02 19:17:35 -04:00
|
|
|
[lib]
|
2021-03-25 15:19:40 -04:00
|
|
|
name = "lemmy_api_common"
|
2020-09-02 19:17:35 -04:00
|
|
|
path = "src/lib.rs"
|
2021-02-25 14:43:39 -05:00
|
|
|
doctest = false
|
2020-09-02 19:17:35 -04:00
|
|
|
|
2022-05-03 13:44:13 -04:00
|
|
|
[features]
|
2023-04-05 16:29:08 -04:00
|
|
|
full = ["tracing", "rosetta-i18n", "chrono", "actix-web", "lemmy_utils",
|
2022-05-03 13:44:13 -04:00
|
|
|
"lemmy_db_views/full", "lemmy_db_views_actor/full", "lemmy_db_views_moderator/full",
|
|
|
|
"percent-encoding", "encoding", "reqwest-middleware", "webpage"]
|
|
|
|
|
2020-09-01 10:25:34 -04:00
|
|
|
[dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
lemmy_db_views = { workspace = true }
|
|
|
|
lemmy_db_views_moderator = { workspace = true }
|
|
|
|
lemmy_db_views_actor = { workspace = true }
|
|
|
|
lemmy_db_schema = { workspace = true, default-features = false }
|
|
|
|
lemmy_utils = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
actix-web = { workspace = true, features = ["cookies"], optional = true }
|
|
|
|
chrono = { workspace = true, optional = true }
|
|
|
|
tracing = { workspace = true, optional = true }
|
|
|
|
reqwest-middleware = { workspace = true, optional = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
rosetta-i18n = { workspace = true, optional = true }
|
|
|
|
percent-encoding = { workspace = true, optional = true }
|
2022-05-03 13:44:13 -04:00
|
|
|
webpage = { version = "1.4.0", default-features = false, features = ["serde"], optional = true }
|
2022-11-17 10:23:01 -05:00
|
|
|
encoding = { version = "0.2.33", optional = true }
|
2022-11-25 21:04:46 -05:00
|
|
|
rand = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
2023-04-13 06:53:55 -04:00
|
|
|
actix = { workspace = true }
|
2022-12-09 10:31:47 -05:00
|
|
|
futures = { workspace = true }
|
2023-02-15 23:05:14 -05:00
|
|
|
uuid = { workspace = true }
|
2022-11-17 10:23:01 -05:00
|
|
|
actix-rt = { workspace = true }
|
|
|
|
reqwest = { workspace = true }
|