2018-04-22 13:35:37 +00:00
|
|
|
[package]
|
2018-12-23 16:29:08 +00:00
|
|
|
authors = ["Plume contributors"]
|
2018-04-22 13:35:37 +00:00
|
|
|
name = "plume"
|
2019-04-19 14:49:46 +00:00
|
|
|
version = "0.3.0"
|
2019-02-17 12:42:59 +00:00
|
|
|
repository = "https://github.com/Plume-org/Plume"
|
2018-12-06 17:54:16 +00:00
|
|
|
|
2018-04-22 13:35:37 +00:00
|
|
|
[dependencies]
|
2018-09-07 23:11:27 +00:00
|
|
|
activitypub = "0.1.3"
|
2018-12-06 17:54:16 +00:00
|
|
|
askama_escape = "0.1"
|
2018-09-01 20:08:26 +00:00
|
|
|
atom_syndication = "0.6"
|
2019-07-03 18:36:42 +00:00
|
|
|
clap = "2.33"
|
2019-05-12 08:41:47 +00:00
|
|
|
colored = "1.8"
|
|
|
|
dotenv = "0.14"
|
2019-04-19 12:59:03 +00: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 20:55:42 +00:00
|
|
|
guid-create = "0.1"
|
2018-04-23 10:54:37 +00:00
|
|
|
heck = "0.3.0"
|
2019-02-27 12:29:26 +00:00
|
|
|
lettre = { git = "https://github.com/lettre/lettre", rev = "c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49" }
|
|
|
|
lettre_email = { git = "https://github.com/lettre/lettre", rev = "c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49" }
|
2018-12-02 16:37:51 +00:00
|
|
|
num_cpus = "1.0"
|
2018-12-07 20:00:12 +00:00
|
|
|
rocket = "0.4.0"
|
|
|
|
rocket_contrib = { version = "0.4.0", features = ["json"] }
|
2019-04-19 12:59:03 +00:00
|
|
|
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
|
2019-05-12 08:41:47 +00:00
|
|
|
rpassword = "3.0"
|
2019-04-17 20:09:07 +00:00
|
|
|
runtime-fmt = "0.3.0"
|
2018-12-02 16:37:51 +00:00
|
|
|
scheduled-thread-pool = "0.2.0"
|
2018-07-06 17:29:36 +00:00
|
|
|
serde = "1.0"
|
2018-04-23 15:09:05 +00:00
|
|
|
serde_json = "1.0"
|
2018-09-29 14:45:27 +00:00
|
|
|
serde_qs = "0.4"
|
2019-05-25 18:23:45 +00:00
|
|
|
shrinkwraprs = "0.2.1"
|
2018-12-06 17:54:16 +00:00
|
|
|
validator = "0.8"
|
2018-12-07 20:00:12 +00:00
|
|
|
validator_derive = "0.8"
|
2019-07-31 09:38:49 +00:00
|
|
|
webfinger = "0.4.1"
|
2018-05-01 18:02:29 +00:00
|
|
|
|
2018-10-05 16:43:23 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "plume"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2018-09-10 18:38:19 +00:00
|
|
|
[dependencies.chrono]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "0.4"
|
|
|
|
|
2018-12-02 16:37:51 +00:00
|
|
|
[dependencies.ctrlc]
|
|
|
|
features = ["termination"]
|
2019-05-12 08:41:47 +00:00
|
|
|
version = "3.1.2"
|
2018-12-02 16:37:51 +00:00
|
|
|
|
2018-04-22 18:13:12 +00:00
|
|
|
[dependencies.diesel]
|
2018-11-21 09:07:28 +00:00
|
|
|
features = ["r2d2", "chrono"]
|
2018-04-22 18:13:12 +00:00
|
|
|
version = "*"
|
|
|
|
|
2018-11-21 09:07:28 +00:00
|
|
|
[dependencies.multipart]
|
|
|
|
default-features = false
|
|
|
|
features = ["server"]
|
2019-02-13 12:39:30 +00:00
|
|
|
version = "0.16"
|
2018-11-21 09:07:28 +00:00
|
|
|
|
2018-09-25 19:45:32 +00:00
|
|
|
[dependencies.plume-api]
|
|
|
|
path = "plume-api"
|
|
|
|
|
2018-06-23 16:36:11 +00:00
|
|
|
[dependencies.plume-common]
|
|
|
|
path = "plume-common"
|
2018-06-21 20:30:56 +00:00
|
|
|
|
2018-06-29 12:22:43 +00:00
|
|
|
[dependencies.plume-models]
|
|
|
|
path = "plume-models"
|
|
|
|
|
2018-06-24 16:58:57 +00:00
|
|
|
[dependencies.rocket_csrf]
|
2018-07-26 15:32:52 +00:00
|
|
|
git = "https://github.com/fdb-hiroshima/rocket_csrf"
|
2018-12-13 09:22:43 +00:00
|
|
|
rev = "4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c"
|
2018-06-24 16:58:57 +00:00
|
|
|
|
2018-12-06 17:54:16 +00:00
|
|
|
[build-dependencies]
|
2019-05-12 08:41:47 +00:00
|
|
|
ructe = "0.6.2"
|
2018-12-15 21:06:27 +00:00
|
|
|
rsass = "0.9"
|
2018-06-23 16:36:11 +00:00
|
|
|
|
2018-09-26 15:22:42 +00:00
|
|
|
[features]
|
|
|
|
default = ["postgres"]
|
2018-11-21 09:07:28 +00:00
|
|
|
postgres = ["plume-models/postgres", "diesel/postgres"]
|
|
|
|
sqlite = ["plume-models/sqlite", "diesel/sqlite"]
|
2019-02-27 12:29:26 +00:00
|
|
|
debug-mailer = []
|
2019-04-06 15:41:57 +00:00
|
|
|
test = []
|
2018-09-26 15:22:42 +00:00
|
|
|
|
2018-06-23 16:36:11 +00:00
|
|
|
[workspace]
|
2019-04-29 14:30:20 +00:00
|
|
|
members = ["plume-api", "plume-cli", "plume-models", "plume-common", "plume-front", "plume-macro"]
|