lemmy/crates/db_views_actor/Cargo.toml

22 lines
608 B
TOML
Raw Normal View History

[package]
name = "lemmy_db_views_actor"
2022-05-30 22:32:31 +00:00
version = "0.16.5"
edition = "2021"
2021-07-24 09:55:56 +00:00
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"
rust-version = "1.57"
[lib]
doctest = false
[features]
full = ["lemmy_db_schema/full", "diesel"]
[dependencies]
2022-05-30 22:32:31 +00:00
lemmy_db_schema = { version = "=0.16.5", path = "../db_schema" }
diesel = { version = "2.0.0", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.145", features = ["derive"] }
typed-builder = "0.10.0"