mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
4ef00e068f
* Prevent crates that shouldn't be published from being published * Make dependent crates publishable * Make dependent crates publishable * fix toml formatting * Removing publish=true * Removing versioned deps. --------- Co-authored-by: SleeplessOne1917 <insomnia-void@protonmail.com> Co-authored-by: Dessalines <tyhou13@gmx.com>
37 lines
972 B
TOML
37 lines
972 B
TOML
[package]
|
|
name = "lemmy_routes"
|
|
publish = false
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
lemmy_utils = { workspace = true }
|
|
lemmy_db_views = { workspace = true }
|
|
lemmy_db_views_actor = { workspace = true }
|
|
lemmy_db_schema = { workspace = true }
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
activitypub_federation = { workspace = true }
|
|
actix-web = { workspace = true, features = ["cookies"] }
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true }
|
|
futures = { workspace = true }
|
|
reqwest = { workspace = true, features = ["stream"] }
|
|
reqwest-middleware = { workspace = true }
|
|
serde = { workspace = true }
|
|
url = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
rss = "2.0.6"
|