You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/crates/api_common/Cargo.toml

27 lines
988 B
TOML

[package]
name = "lemmy_api_common"
version = "0.13.0-rc.1"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
[lib]
name = "lemmy_api_common"
path = "src/lib.rs"
doctest = false
[dependencies]
lemmy_db_queries = { version = "=0.13.0-rc.1", path = "../db_queries" }
lemmy_db_views = { version = "=0.13.0-rc.1", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.13.0-rc.1", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.13.0-rc.1", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.13.0-rc.1", path = "../db_schema" }
lemmy_utils = { version = "=0.13.0-rc.1", path = "../utils" }
serde = { version = "1.0.129", features = ["derive"] }
log = "0.4.14"
diesel = "1.4.7"
actix-web = { version = "4.0.0-beta.8", default-features = false, features = ["cookies"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
url = "2.2.2"