Plume/Cargo.toml

81 lines
2.1 KiB
TOML
Raw Normal View History

[package]
authors = ["Plume contributors"]
name = "plume"
2019-04-19 16:49:46 +02:00
version = "0.3.0"
repository = "https://github.com/Plume-org/Plume"
[dependencies]
activitypub = "0.1.3"
askama_escape = "0.1"
2018-09-01 22:08:26 +02:00
atom_syndication = "0.6"
colored = "1.7"
dotenv = "0.13"
2019-04-19 14:59:03 +02:00
gettext = { git = "https://github.com/Plume-org/gettext/", rev = "294c54d74c699fbc66502b480a37cc66c1daa7f3" }
gettext-macros = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
gettext-utils = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
2018-09-02 22:55:42 +02:00
guid-create = "0.1"
2018-04-23 12:54:37 +02:00
heck = "0.3.0"
lettre = { git = "https://github.com/lettre/lettre", rev = "c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49" }
lettre_email = { git = "https://github.com/lettre/lettre", rev = "c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49" }
num_cpus = "1.0"
rocket = "0.4.0"
rocket_contrib = { version = "0.4.0", features = ["json"] }
2019-04-19 14:59:03 +02:00
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
2018-06-19 17:14:52 +02:00
rpassword = "2.0"
runtime-fmt = "0.3.0"
scheduled-thread-pool = "0.2.0"
serde = "1.0"
2018-04-23 17:09:05 +02:00
serde_json = "1.0"
2018-09-29 16:45:27 +02:00
serde_qs = "0.4"
validator = "0.8"
validator_derive = "0.8"
webfinger = "0.3.1"
2018-05-01 20:02:29 +02:00
2018-10-05 18:43:23 +02:00
[[bin]]
name = "plume"
path = "src/main.rs"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.ctrlc]
features = ["termination"]
version = "3.1.1"
2018-04-22 20:13:12 +02:00
[dependencies.diesel]
features = ["r2d2", "chrono"]
2018-04-22 20:13:12 +02:00
version = "*"
[dependencies.multipart]
default-features = false
features = ["server"]
2019-02-13 13:39:30 +01:00
version = "0.16"
2018-09-25 21:45:32 +02:00
[dependencies.plume-api]
path = "plume-api"
[dependencies.plume-common]
path = "plume-common"
2018-06-29 14:22:43 +02:00
[dependencies.plume-models]
path = "plume-models"
2018-06-24 18:58:57 +02:00
[dependencies.rocket_csrf]
2018-07-26 17:32:52 +02:00
git = "https://github.com/fdb-hiroshima/rocket_csrf"
2018-12-13 10:22:43 +01:00
rev = "4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c"
2018-06-24 18:58:57 +02:00
[build-dependencies]
ructe = "0.5.6"
rsass = "0.9"
[features]
default = ["postgres"]
postgres = ["plume-models/postgres", "diesel/postgres"]
sqlite = ["plume-models/sqlite", "diesel/sqlite"]
debug-mailer = []
test = []
[workspace]
members = ["plume-api", "plume-cli", "plume-models", "plume-common", "plume-front", "plume-macro"]