2018-04-22 13:35:37 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Bat' <baptiste@gelez.xyz>"]
|
|
|
|
name = "plume"
|
2018-09-11 18:53:14 +00:00
|
|
|
version = "0.2.0"
|
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"
|
2018-12-07 20:00:12 +00:00
|
|
|
canapi = "0.2"
|
2018-06-19 13:08:44 +00:00
|
|
|
colored = "1.6"
|
2018-09-07 23:11:27 +00:00
|
|
|
dotenv = "0.13"
|
2018-05-16 18:20:44 +00:00
|
|
|
failure = "0.1"
|
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-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"] }
|
2018-12-06 17:54:16 +00:00
|
|
|
rocket_i18n = "0.3.1"
|
2018-06-19 15:14:52 +00:00
|
|
|
rpassword = "2.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"
|
|
|
|
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"
|
2018-12-06 17:54:16 +00:00
|
|
|
validator = "0.8"
|
2018-12-07 20:00:12 +00:00
|
|
|
validator_derive = "0.8"
|
2018-10-11 11:51:45 +00:00
|
|
|
webfinger = "0.3.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"]
|
|
|
|
version = "3.1.1"
|
|
|
|
|
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"]
|
|
|
|
version = "0.15"
|
|
|
|
|
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-06 17:54:16 +00:00
|
|
|
rev = "717fad53cfd2ee5cbee5b4571f6190644f9dddd7"
|
2018-06-24 16:58:57 +00:00
|
|
|
|
2018-12-06 17:54:16 +00:00
|
|
|
[build-dependencies]
|
2018-12-07 20:00:12 +00:00
|
|
|
ructe = "0.5.4"
|
2018-12-06 17:54:16 +00:00
|
|
|
rocket_i18n = { version = "0.3.1", features = ["build"] }
|
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"]
|
2018-09-26 15:22:42 +00:00
|
|
|
|
2018-06-23 16:36:11 +00:00
|
|
|
[workspace]
|
2018-10-05 16:43:23 +00:00
|
|
|
members = ["plume-api", "plume-cli", "plume-models", "plume-common"]
|