80 lines
1.8 KiB
TOML
80 lines
1.8 KiB
TOML
[package]
|
|
authors = ["Plume contributors"]
|
|
name = "plume"
|
|
version = "0.7.1"
|
|
repository = "https://github.com/Plume-org/Plume"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
activitypub = "0.1.3"
|
|
atom_syndication = "0.11.0"
|
|
clap = "2.33"
|
|
dotenv = "0.15.0"
|
|
gettext = "0.4.0"
|
|
gettext-macros = { git = "https://git.joinplu.me/plume/gettext-macros", rev = "2227905fb9" }
|
|
gettext-utils = { git = "https://git.joinplu.me/plume/gettext-macros", rev = "2227905fb9" }
|
|
guid-create = "0.2"
|
|
lettre_email = "0.9.2"
|
|
num_cpus = "1.10"
|
|
rocket = "0.4.6"
|
|
rocket_contrib = { version = "0.4.5", features = ["json"] }
|
|
rocket_i18n = "0.4.1"
|
|
scheduled-thread-pool = "0.2.2"
|
|
serde = "1.0"
|
|
serde_json = "1.0.79"
|
|
shrinkwraprs = "0.3.0"
|
|
validator = { version = "0.14", features = ["derive"] }
|
|
webfinger = "0.4.1"
|
|
tracing = "0.1.30"
|
|
tracing-subscriber = "0.3.8"
|
|
riker = "0.4.2"
|
|
|
|
[[bin]]
|
|
name = "plume"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies.chrono]
|
|
features = ["serde"]
|
|
version = "0.4"
|
|
|
|
[dependencies.ctrlc]
|
|
features = ["termination"]
|
|
version = "3.1.2"
|
|
|
|
[dependencies.diesel]
|
|
features = ["r2d2", "chrono"]
|
|
version = "1.4.5"
|
|
|
|
[dependencies.multipart]
|
|
default-features = false
|
|
features = ["server"]
|
|
version = "0.18"
|
|
|
|
[dependencies.plume-api]
|
|
path = "plume-api"
|
|
|
|
[dependencies.plume-common]
|
|
path = "plume-common"
|
|
|
|
[dependencies.plume-models]
|
|
path = "plume-models"
|
|
|
|
[dependencies.rocket_csrf]
|
|
git = "https://github.com/fdb-hiroshima/rocket_csrf"
|
|
rev = "29910f2829e7e590a540da3804336577b48c7b31"
|
|
|
|
[build-dependencies]
|
|
ructe = "0.14.0"
|
|
rsass = "0.23"
|
|
|
|
[features]
|
|
default = ["postgres"]
|
|
postgres = ["plume-models/postgres", "diesel/postgres"]
|
|
sqlite = ["plume-models/sqlite", "diesel/sqlite"]
|
|
debug-mailer = []
|
|
test = []
|
|
search-lindera = ["plume-models/search-lindera"]
|
|
|
|
[workspace]
|
|
members = ["plume-api", "plume-cli", "plume-models", "plume-common", "plume-front", "plume-macro"]
|