Plume/plume-models/Cargo.toml

67 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "plume-models"
2022-05-11 19:29:46 +00:00
version = "0.7.2"
authors = ["Plume contributors"]
2020-01-21 06:02:03 +00:00
edition = "2018"
[dependencies]
ammonia = "3.2.0"
bcrypt = "0.12.1"
2022-01-06 20:09:08 +00:00
guid-create = "0.2"
2022-01-06 21:05:05 +00:00
itertools = "0.10.3"
lazy_static = "1.0"
ldap3 = "0.11.1"
migrations_internals= "1.4.0"
openssl = "0.10.40"
rocket = "0.4.11"
2022-02-06 09:57:43 +00:00
rocket_i18n = "0.4.1"
reqwest = "0.11.11"
scheduled-thread-pool = "0.2.6"
2023-01-05 15:04:45 +00:00
serde = "1.0.137"
#rust-s3 = { version = "0.29.0", default-features = false, features = ["blocking"] }
rust-s3 = { version = "0.33.0", optional = true, features = ["blocking"] }
serde_derive = "1.0"
serde_json = "1.0.81"
2021-01-15 01:19:54 +00:00
tantivy = "0.13.3"
url = "2.1"
walkdir = "2.2"
webfinger = "0.4.1"
whatlang = "0.16.2"
2022-01-06 20:49:06 +00:00
shrinkwraprs = "0.3.0"
diesel-derive-newtype = "1.0.0"
glob = "0.3.1"
2021-01-16 04:34:15 +00:00
lindera-tantivy = { version = "0.7.1", optional = true }
tracing = "0.1.35"
2021-01-06 14:01:00 +00:00
riker = "0.4.2"
once_cell = "1.12.0"
lettre = "0.9.6"
native-tls = "0.2.10"
2022-12-31 23:52:08 +00:00
activitystreams = "=0.7.0-alpha.20"
2018-06-23 16:39:58 +00:00
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.diesel]
features = ["r2d2", "chrono"]
2020-12-30 13:31:02 +00:00
version = "1.4.5"
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]
assert-json-diff = "2.0.1"
diesel_migrations = "1.3.0"
[features]
postgres = ["diesel/postgres", "plume-macro/postgres" ]
sqlite = ["diesel/sqlite", "plume-macro/sqlite" ]
search-lindera = ["lindera-tantivy"]
s3 = ["rust-s3"]