2020-07-10 18:15:41 +00:00
|
|
|
[package]
|
2020-12-21 16:30:34 +00:00
|
|
|
name = "lemmy_db_queries"
|
2021-09-03 12:28:26 +00:00
|
|
|
version = "0.12.0-rc.2"
|
2020-07-10 18:15:41 +00:00
|
|
|
edition = "2018"
|
2021-07-24 09:55:56 +00:00
|
|
|
description = "A link aggregator for the fediverse"
|
|
|
|
license = "AGPL-3.0"
|
2020-07-10 18:15:41 +00:00
|
|
|
|
2020-09-02 15:42:48 +00:00
|
|
|
[lib]
|
2020-12-21 23:27:42 +00:00
|
|
|
name = "lemmy_db_queries"
|
2020-09-02 15:42:48 +00:00
|
|
|
path = "src/lib.rs"
|
2021-02-25 19:43:39 +00:00
|
|
|
doctest = false
|
2020-09-02 15:42:48 +00:00
|
|
|
|
2020-07-10 18:15:41 +00:00
|
|
|
[dependencies]
|
2021-09-03 12:28:26 +00:00
|
|
|
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
|
|
|
|
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
|
2021-07-06 13:26:46 +00:00
|
|
|
diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] }
|
2020-12-21 02:48:29 +00:00
|
|
|
diesel_migrations = "1.4.0"
|
2020-12-04 14:00:15 +00:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-08-26 12:37:10 +00:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-08-17 20:31:16 +00:00
|
|
|
serde_json = { version = "1.0.66", features = ["preserve_order"] }
|
2021-07-06 13:26:46 +00:00
|
|
|
strum = "0.21.0"
|
|
|
|
strum_macros = "0.21.1"
|
2021-02-01 20:56:37 +00:00
|
|
|
log = "0.4.14"
|
2021-07-06 13:26:46 +00:00
|
|
|
sha2 = "0.9.5"
|
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2020-12-04 14:00:15 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-07-06 13:26:46 +00:00
|
|
|
regex = "1.5.4"
|
2021-08-17 20:31:16 +00:00
|
|
|
bcrypt = "0.10.1"
|
2021-02-25 19:43:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-07-06 13:26:46 +00:00
|
|
|
serial_test = "0.5.1"
|