2018-06-23 16:36:11 +00:00
|
|
|
[package]
|
|
|
|
name = "plume-models"
|
2019-04-19 14:49:46 +00:00
|
|
|
version = "0.3.0"
|
2018-12-23 16:29:08 +00:00
|
|
|
authors = ["Plume contributors"]
|
2018-06-23 16:36:11 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
activitypub = "0.1.1"
|
2019-05-12 08:41:47 +00:00
|
|
|
ammonia = "2.1.1"
|
2018-12-06 17:54:16 +00:00
|
|
|
askama_escape = "0.1"
|
2019-05-12 08:41:47 +00:00
|
|
|
bcrypt = "0.4"
|
2018-10-31 09:40:20 +00:00
|
|
|
guid-create = "0.1"
|
2018-06-23 16:36:11 +00:00
|
|
|
heck = "0.3.0"
|
2019-01-18 18:22:36 +00:00
|
|
|
itertools = "0.8.0"
|
2018-06-23 16:36:11 +00:00
|
|
|
lazy_static = "*"
|
2019-04-29 14:30:20 +00:00
|
|
|
migrations_internals= "1.4.0"
|
2019-05-12 08:41:47 +00:00
|
|
|
openssl = "0.10.22"
|
2018-12-07 20:00:12 +00:00
|
|
|
rocket = "0.4.0"
|
2019-04-19 12:59:03 +00:00
|
|
|
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
|
2018-10-11 11:51:45 +00:00
|
|
|
reqwest = "0.9"
|
2018-12-24 15:42:40 +00:00
|
|
|
scheduled-thread-pool = "0.2.0"
|
2018-09-07 23:11:27 +00:00
|
|
|
serde = "1.0"
|
2019-03-21 10:51:41 +00:00
|
|
|
serde_derive = "1.0"
|
2018-06-23 16:36:11 +00:00
|
|
|
serde_json = "1.0"
|
2019-04-01 18:28:23 +00:00
|
|
|
tantivy = "0.9.1"
|
2018-06-23 16:36:11 +00:00
|
|
|
url = "1.7"
|
2018-10-11 11:51:45 +00:00
|
|
|
webfinger = "0.3.1"
|
2019-05-12 08:41:47 +00:00
|
|
|
whatlang = "0.7.1"
|
2019-05-25 18:23:45 +00:00
|
|
|
shrinkwraprs = "0.2.1"
|
|
|
|
diesel-derive-newtype = "0.1.2"
|
2018-06-23 16:39:58 +00:00
|
|
|
|
2018-06-23 16:36:11 +00:00
|
|
|
[dependencies.chrono]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "0.4"
|
|
|
|
|
|
|
|
[dependencies.diesel]
|
2018-09-26 15:22:42 +00:00
|
|
|
features = ["r2d2", "chrono"]
|
2019-05-12 08:41:47 +00:00
|
|
|
version = "1.4.2"
|
2018-06-23 16:36:11 +00:00
|
|
|
|
2018-09-19 14:49:34 +00:00
|
|
|
[dependencies.plume-api]
|
|
|
|
path = "../plume-api"
|
|
|
|
|
2018-06-23 16:36:11 +00:00
|
|
|
[dependencies.plume-common]
|
|
|
|
path = "../plume-common"
|
|
|
|
|
2019-04-29 14:30:20 +00:00
|
|
|
[dependencies.plume-macro]
|
|
|
|
path = "../plume-macro"
|
|
|
|
|
2018-11-01 21:23:38 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
diesel_migrations = "1.3.0"
|
|
|
|
|
2018-09-26 15:22:42 +00:00
|
|
|
[features]
|
2019-04-29 14:30:20 +00:00
|
|
|
postgres = ["diesel/postgres", "plume-macro/postgres"]
|
|
|
|
sqlite = ["diesel/sqlite", "plume-macro/sqlite"]
|