Plume/plume-models/Cargo.toml

60 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "plume-models"
version = "0.5.0"
authors = ["Plume contributors"]
2020-01-21 06:02:03 +00:00
edition = "2018"
[dependencies]
activitypub = "0.1.1"
ammonia = "2.1.1"
askama_escape = "0.1"
bcrypt = "0.5"
2018-10-31 09:40:20 +00:00
guid-create = "0.1"
heck = "0.3.0"
itertools = "0.8.0"
lazy_static = "1.0"
2020-10-04 10:18:22 +00:00
ldap3 = "0.7.1"
migrations_internals= "1.4.0"
openssl = "0.10.22"
rocket = "0.4.5"
2019-04-19 12:59:03 +00:00
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
reqwest = "0.9"
scheduled-thread-pool = "0.2.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tantivy = "0.12.0"
url = "2.1"
walkdir = "2.2"
webfinger = "0.4.1"
whatlang = "0.7.1"
shrinkwraprs = "0.2.1"
diesel-derive-newtype = "0.1.2"
glob = "0.3.0"
2020-07-03 23:02:38 +00:00
lindera-tantivy = { version = "0.1.3", optional = true }
2018-06-23 16:39:58 +00:00
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.diesel]
features = ["r2d2", "chrono"]
version = "1.4.2"
2018-09-19 14:49:34 +00:00
[dependencies.plume-api]
path = "../plume-api"
[dependencies.plume-common]
path = "../plume-common"
[dependencies.plume-macro]
path = "../plume-macro"
[dev-dependencies]
diesel_migrations = "1.3.0"
[features]
postgres = ["diesel/postgres", "plume-macro/postgres" ]
sqlite = ["diesel/sqlite", "plume-macro/sqlite" ]
search-lindera = ["lindera-tantivy"]