2018-06-23 18:36:11 +02:00
|
|
|
[package]
|
|
|
|
name = "plume-models"
|
2022-01-12 02:42:45 +01:00
|
|
|
version = "0.7.1"
|
2018-12-23 17:29:08 +01:00
|
|
|
authors = ["Plume contributors"]
|
2020-01-21 07:02:03 +01:00
|
|
|
edition = "2018"
|
2018-06-23 18:36:11 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
activitypub = "0.1.1"
|
2022-02-17 20:29:15 +01:00
|
|
|
ammonia = "3.1.4"
|
2022-03-21 20:32:31 +01:00
|
|
|
bcrypt = "0.12.1"
|
2022-01-06 21:09:08 +01:00
|
|
|
guid-create = "0.2"
|
2022-01-06 22:05:05 +01:00
|
|
|
itertools = "0.10.3"
|
2020-01-19 12:52:32 +01:00
|
|
|
lazy_static = "1.0"
|
2022-02-28 20:46:38 +01:00
|
|
|
ldap3 = "0.10.2"
|
2019-04-29 16:30:20 +02:00
|
|
|
migrations_internals= "1.4.0"
|
2019-05-12 10:41:47 +02:00
|
|
|
openssl = "0.10.22"
|
2021-11-27 23:52:37 +01:00
|
|
|
rocket = "0.4.6"
|
2022-02-06 10:57:43 +01:00
|
|
|
rocket_i18n = "0.4.1"
|
2018-10-11 13:51:45 +02:00
|
|
|
reqwest = "0.9"
|
2019-08-14 15:04:30 +02:00
|
|
|
scheduled-thread-pool = "0.2.2"
|
2018-09-08 01:11:27 +02:00
|
|
|
serde = "1.0"
|
2019-03-21 11:51:41 +01:00
|
|
|
serde_derive = "1.0"
|
2022-02-14 20:32:32 +01:00
|
|
|
serde_json = "1.0.79"
|
2021-01-15 02:19:54 +01:00
|
|
|
tantivy = "0.13.3"
|
2019-08-14 15:04:30 +02:00
|
|
|
url = "2.1"
|
2019-08-21 00:42:04 +02:00
|
|
|
walkdir = "2.2"
|
2019-07-31 11:38:49 +02:00
|
|
|
webfinger = "0.4.1"
|
2022-01-06 22:05:20 +01:00
|
|
|
whatlang = "0.13.0"
|
2022-01-06 21:49:06 +01:00
|
|
|
shrinkwraprs = "0.3.0"
|
2019-05-25 20:23:45 +02:00
|
|
|
diesel-derive-newtype = "0.1.2"
|
2020-01-12 19:41:35 +01:00
|
|
|
glob = "0.3.0"
|
2021-01-16 05:34:15 +01:00
|
|
|
lindera-tantivy = { version = "0.7.1", optional = true }
|
2022-03-09 20:30:07 +01:00
|
|
|
tracing = "0.1.32"
|
2021-01-06 15:01:00 +01:00
|
|
|
riker = "0.4.2"
|
2022-03-03 20:31:09 +01:00
|
|
|
once_cell = "1.10.0"
|
2022-01-03 09:09:47 +01:00
|
|
|
lettre = "0.9.6"
|
2022-03-29 21:29:35 +02:00
|
|
|
native-tls = "0.2.10"
|
2018-06-23 18:39:58 +02:00
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
[dependencies.chrono]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "0.4"
|
|
|
|
|
|
|
|
[dependencies.diesel]
|
2018-09-26 17:22:42 +02:00
|
|
|
features = ["r2d2", "chrono"]
|
2020-12-30 14:31:02 +01:00
|
|
|
version = "1.4.5"
|
2018-06-23 18:36:11 +02:00
|
|
|
|
2018-09-19 16:49:34 +02:00
|
|
|
[dependencies.plume-api]
|
|
|
|
path = "../plume-api"
|
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
[dependencies.plume-common]
|
|
|
|
path = "../plume-common"
|
|
|
|
|
2019-04-29 16:30:20 +02:00
|
|
|
[dependencies.plume-macro]
|
|
|
|
path = "../plume-macro"
|
|
|
|
|
2018-11-01 22:23:38 +01:00
|
|
|
[dev-dependencies]
|
2022-01-08 16:40:45 +01:00
|
|
|
assert-json-diff = "2.0.1"
|
2018-11-01 22:23:38 +01:00
|
|
|
diesel_migrations = "1.3.0"
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
[features]
|
2019-09-13 12:28:36 +02:00
|
|
|
postgres = ["diesel/postgres", "plume-macro/postgres" ]
|
|
|
|
sqlite = ["diesel/sqlite", "plume-macro/sqlite" ]
|
2020-06-17 16:57:28 +02:00
|
|
|
search-lindera = ["lindera-tantivy"]
|