2018-04-22 15:35:37 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Bat' <baptiste@gelez.xyz>"]
|
|
|
|
name = "plume"
|
|
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
2018-09-08 01:11:27 +02:00
|
|
|
activitypub = "0.1.3"
|
2018-09-01 22:08:26 +02:00
|
|
|
atom_syndication = "0.6"
|
2018-06-19 15:08:44 +02:00
|
|
|
colored = "1.6"
|
2018-09-08 01:11:27 +02:00
|
|
|
dotenv = "0.13"
|
2018-05-16 20:20:44 +02:00
|
|
|
failure = "0.1"
|
2018-06-15 15:08:38 +02:00
|
|
|
gettext-rs = "0.4"
|
2018-09-02 22:55:42 +02:00
|
|
|
guid-create = "0.1"
|
2018-04-23 12:54:37 +02:00
|
|
|
heck = "0.3.0"
|
2018-09-02 22:55:42 +02:00
|
|
|
multipart = "0.15"
|
2018-06-19 17:14:52 +02:00
|
|
|
rpassword = "2.0"
|
2018-07-06 19:29:36 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2018-04-23 17:09:05 +02:00
|
|
|
serde_json = "1.0"
|
2018-09-09 00:09:59 +02:00
|
|
|
tera = "=0.11.7"
|
2018-06-29 14:22:43 +02:00
|
|
|
validator = "0.7"
|
|
|
|
validator_derive = "0.7"
|
2018-07-26 21:35:35 +02:00
|
|
|
webfinger = "0.3"
|
2018-07-26 17:32:52 +02:00
|
|
|
workerpool = "1.1"
|
2018-05-01 20:02:29 +02:00
|
|
|
|
2018-04-22 20:13:12 +02:00
|
|
|
[dependencies.diesel]
|
2018-04-30 19:46:27 +02:00
|
|
|
features = ["postgres", "r2d2", "chrono"]
|
2018-04-22 20:13:12 +02:00
|
|
|
version = "*"
|
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
[dependencies.plume-common]
|
|
|
|
path = "plume-common"
|
2018-06-21 22:30:56 +02:00
|
|
|
|
2018-06-29 14:22:43 +02:00
|
|
|
[dependencies.plume-models]
|
|
|
|
path = "plume-models"
|
|
|
|
|
2018-06-16 19:39:22 +02:00
|
|
|
[dependencies.rocket]
|
|
|
|
git = "https://github.com/SergioBenitez/Rocket"
|
2018-09-08 01:11:27 +02:00
|
|
|
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
|
2018-06-16 19:39:22 +02:00
|
|
|
|
|
|
|
[dependencies.rocket_codegen]
|
|
|
|
git = "https://github.com/SergioBenitez/Rocket"
|
2018-09-08 01:11:27 +02:00
|
|
|
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
|
2018-06-16 19:39:22 +02:00
|
|
|
|
2018-04-22 20:13:12 +02:00
|
|
|
[dependencies.rocket_contrib]
|
|
|
|
features = ["tera_templates", "json"]
|
2018-06-16 19:39:22 +02:00
|
|
|
git = "https://github.com/SergioBenitez/Rocket"
|
2018-09-08 01:11:27 +02:00
|
|
|
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
|
2018-06-17 16:28:44 +02:00
|
|
|
|
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-09-09 12:06:10 +02:00
|
|
|
rev = "5d23ba4c6c2ee4c41040d428d24344db3d29997f"
|
2018-06-24 18:58:57 +02:00
|
|
|
|
2018-06-17 16:28:44 +02:00
|
|
|
[dependencies.rocket_i18n]
|
|
|
|
git = "https://github.com/BaptisteGelez/rocket_i18n"
|
2018-09-08 01:11:27 +02:00
|
|
|
rev = "75a3bfd7b847324c078a355a7f101f8241a9f59b"
|
2018-06-23 18:36:11 +02:00
|
|
|
|
|
|
|
[workspace]
|
2018-06-29 14:22:43 +02:00
|
|
|
members = ["plume-models", "plume-common"]
|