2020-09-01 14:25:34 +00:00
|
|
|
[package]
|
2020-09-16 10:25:22 +00:00
|
|
|
name = "lemmy_structs"
|
2020-09-01 14:25:34 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Felix Ableitner <me@nutomic.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-09-02 23:17:35 +00:00
|
|
|
[lib]
|
2020-09-16 10:25:22 +00:00
|
|
|
name = "lemmy_structs"
|
2020-09-02 23:17:35 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2020-09-01 14:25:34 +00:00
|
|
|
[dependencies]
|
|
|
|
lemmy_db = { path = "../lemmy_db" }
|
2020-12-18 17:27:25 +00:00
|
|
|
lemmy_db_schema = { path = "../lemmy_db_schema" }
|
2020-09-14 15:29:50 +00:00
|
|
|
lemmy_utils = { path = "../lemmy_utils" }
|
2020-12-07 12:40:39 +00:00
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2020-12-04 14:00:15 +00:00
|
|
|
log = "0.4.11"
|
|
|
|
diesel = "1.4.5"
|
|
|
|
actix-web = "3.3.2"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
|
|
serde_json = { version = "1.0.60", features = ["preserve_order"] }
|