Plume/Cargo.toml

80 lines
1.7 KiB
TOML
Raw Normal View History

[package]
authors = ["Bat' <baptiste@gelez.xyz>"]
name = "plume"
version = "0.2.0"
[dependencies]
activitypub = "0.1.3"
2018-09-01 20:08:26 +00:00
atom_syndication = "0.6"
2018-09-25 19:45:32 +00:00
canapi = "0.1"
colored = "1.6"
dotenv = "0.13"
2018-05-16 18:20:44 +00:00
failure = "0.1"
2018-06-15 13:08:38 +00:00
gettext-rs = "0.4"
2018-09-02 20:55:42 +00:00
guid-create = "0.1"
2018-04-23 10:54:37 +00:00
heck = "0.3.0"
2018-06-19 15:14:52 +00:00
rpassword = "2.0"
serde = "1.0"
serde_derive = "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"
tera = "0.11"
2018-06-29 12:22:43 +00:00
validator = "0.7"
validator_derive = "0.7"
webfinger = "0.3.1"
2018-07-26 15:32:52 +00:00
workerpool = "1.1"
2018-05-01 18:02:29 +00:00
2018-10-05 16:43:23 +00:00
[[bin]]
name = "plume"
path = "src/main.rs"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
2018-04-22 18:13:12 +00:00
[dependencies.diesel]
features = ["r2d2", "chrono"]
2018-04-22 18:13:12 +00:00
version = "*"
[dependencies.multipart]
default-features = false
features = ["server"]
version = "0.15"
2018-09-25 19:45:32 +00:00
[dependencies.plume-api]
path = "plume-api"
[dependencies.plume-common]
path = "plume-common"
2018-06-29 12:22:43 +00:00
[dependencies.plume-models]
path = "plume-models"
[dependencies.rocket]
git = "https://github.com/SergioBenitez/Rocket"
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
[dependencies.rocket_codegen]
git = "https://github.com/SergioBenitez/Rocket"
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
2018-04-22 18:13:12 +00:00
[dependencies.rocket_contrib]
features = ["tera_templates", "json"]
git = "https://github.com/SergioBenitez/Rocket"
rev = "55459db7732b9a240826a5c120c650f87e3372ce"
2018-06-17 14:28:44 +00:00
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"
rev = "2805ce5dbae4a6441208484426440885a5640a6a"
2018-06-24 16:58:57 +00:00
2018-06-17 14:28:44 +00:00
[dependencies.rocket_i18n]
git = "https://github.com/BaptisteGelez/rocket_i18n"
rev = "75a3bfd7b847324c078a355a7f101f8241a9f59b"
[features]
default = ["postgres"]
postgres = ["plume-models/postgres", "diesel/postgres"]
sqlite = ["plume-models/sqlite", "diesel/sqlite"]
[workspace]
2018-10-05 16:43:23 +00:00
members = ["plume-api", "plume-cli", "plume-models", "plume-common"]