2020-09-01 14:25:34 +00:00
|
|
|
[package]
|
2021-03-25 19:19:40 +00:00
|
|
|
name = "lemmy_api_common"
|
2022-11-17 15:23:01 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 16:38:00 +00:00
|
|
|
repository.workspace = true
|
2020-09-01 14:25:34 +00:00
|
|
|
|
2020-09-02 23:17:35 +00:00
|
|
|
[lib]
|
2021-03-25 19:19:40 +00:00
|
|
|
name = "lemmy_api_common"
|
2020-09-02 23:17:35 +00:00
|
|
|
path = "src/lib.rs"
|
2021-02-25 19:43:39 +00:00
|
|
|
doctest = false
|
2020-09-02 23:17:35 +00:00
|
|
|
|
2023-11-21 13:51:22 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
[features]
|
2023-07-14 08:45:18 +00:00
|
|
|
full = [
|
|
|
|
"tracing",
|
|
|
|
"rosetta-i18n",
|
|
|
|
"lemmy_db_views/full",
|
|
|
|
"lemmy_db_views_actor/full",
|
|
|
|
"lemmy_db_views_moderator/full",
|
2024-02-27 16:13:52 +00:00
|
|
|
"lemmy_utils/full",
|
2023-07-19 13:49:41 +00:00
|
|
|
"activitypub_federation",
|
2023-07-14 08:45:18 +00:00
|
|
|
"encoding",
|
|
|
|
"reqwest-middleware",
|
|
|
|
"webpage",
|
|
|
|
"ts-rs",
|
|
|
|
"tokio",
|
|
|
|
"uuid",
|
|
|
|
"reqwest",
|
|
|
|
"actix-web",
|
|
|
|
"futures",
|
2023-07-19 13:49:41 +00:00
|
|
|
"once_cell",
|
2023-10-09 10:46:12 +00:00
|
|
|
"jsonwebtoken",
|
2024-01-25 14:22:11 +00:00
|
|
|
"mime",
|
2023-07-14 08:45:18 +00:00
|
|
|
]
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2020-09-01 14:25:34 +00:00
|
|
|
[dependencies]
|
2022-11-17 15:23:01 +00:00
|
|
|
lemmy_db_views = { workspace = true }
|
|
|
|
lemmy_db_views_moderator = { workspace = true }
|
|
|
|
lemmy_db_views_actor = { workspace = true }
|
2023-05-29 14:44:20 +00:00
|
|
|
lemmy_db_schema = { workspace = true }
|
2024-02-27 16:13:52 +00:00
|
|
|
lemmy_utils = { workspace = true }
|
2023-07-19 13:49:41 +00:00
|
|
|
activitypub_federation = { workspace = true, optional = true }
|
2022-11-17 15:23:01 +00:00
|
|
|
serde = { workspace = true }
|
2023-04-26 04:26:10 +00:00
|
|
|
serde_with = { workspace = true }
|
2022-11-17 15:23:01 +00:00
|
|
|
url = { workspace = true }
|
2023-11-06 21:07:04 +00:00
|
|
|
chrono = { workspace = true }
|
2022-11-17 15:23:01 +00:00
|
|
|
tracing = { workspace = true, optional = true }
|
|
|
|
reqwest-middleware = { workspace = true, optional = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
rosetta-i18n = { workspace = true, optional = true }
|
2023-07-14 08:45:18 +00:00
|
|
|
futures = { workspace = true, optional = true }
|
|
|
|
uuid = { workspace = true, optional = true }
|
|
|
|
tokio = { workspace = true, optional = true }
|
|
|
|
reqwest = { workspace = true, optional = true }
|
2023-05-29 14:44:20 +00:00
|
|
|
ts-rs = { workspace = true, optional = true }
|
2024-03-15 11:03:29 +00:00
|
|
|
moka.workspace = true
|
|
|
|
anyhow.workspace = true
|
2023-07-19 13:49:41 +00:00
|
|
|
once_cell = { workspace = true, optional = true }
|
2023-07-14 08:45:18 +00:00
|
|
|
actix-web = { workspace = true, optional = true }
|
2024-01-25 14:22:11 +00:00
|
|
|
enum-map = { workspace = true }
|
|
|
|
urlencoding = { workspace = true }
|
|
|
|
mime = { version = "0.3.17", optional = true }
|
|
|
|
webpage = { version = "1.6", default-features = false, features = [
|
|
|
|
"serde",
|
|
|
|
], optional = true }
|
|
|
|
encoding = { version = "0.2.33", optional = true }
|
2023-10-09 10:46:12 +00:00
|
|
|
jsonwebtoken = { version = "8.3.0", optional = true }
|
2023-07-19 13:49:41 +00:00
|
|
|
# necessary for wasmt compilation
|
2024-01-25 09:24:07 +00:00
|
|
|
getrandom = { version = "0.2.12", features = ["js"] }
|
2023-10-09 10:46:12 +00:00
|
|
|
|
2023-10-31 10:11:12 +00:00
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["getrandom"]
|
|
|
|
|
2023-10-09 10:46:12 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = { workspace = true }
|
|
|
|
reqwest-middleware = { workspace = true }
|
2024-01-04 09:47:18 +00:00
|
|
|
pretty_assertions = { workspace = true }
|