43cb9f700c
as requested in https://github.com/Plume-org/webfinger/issues/8 and provided in https://github.com/Plume-org/webfinger/pull/9 ``` meena@76ix ~/s/a/plume (go/async) [101]> cargo update --package webfinger Updating crates.io index Updating git repository `https://github.com/Plume-org/webfinger` Removing bytes v0.4.12 Removing cookie v0.12.0 Removing cookie_store v0.7.0 Removing crossbeam-deque v0.7.2 Removing crossbeam-epoch v0.8.0 Removing crossbeam-queue v0.1.2 Removing crossbeam-utils v0.7.0 Removing h2 v0.1.26 Removing http v0.1.21 Removing http-body v0.1.0 Removing hyper v0.12.35 Removing hyper-tls v0.3.2 Removing publicsuffix v1.5.4 Removing reqwest v0.9.24 Removing serde_urlencoded v0.5.5 Removing string v0.2.1 Removing tokio v0.1.22 Removing tokio-buf v0.1.1 Removing tokio-current-thread v0.1.6 Removing tokio-executor v0.1.9 Removing tokio-io v0.1.12 Removing tokio-reactor v0.1.11 Removing tokio-sync v0.1.7 Removing tokio-tcp v0.1.3 Removing tokio-threadpool v0.1.17 Removing tokio-timer v0.2.12 Removing try_from v0.3.2 Removing want v0.2.0 Adding webfinger v0.5.0 (https://github.com/Plume-org/webfinger?rev=update-deps#cdaab95e) Removing webfinger v0.5.0 meena@76ix ~/s/a/plume (go/async)> ```
87 lines
2.1 KiB
TOML
87 lines
2.1 KiB
TOML
[package]
|
|
authors = ["Plume contributors"]
|
|
name = "plume"
|
|
version = "0.4.0"
|
|
repository = "https://github.com/Plume-org/Plume"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
activitypub = "0.1.3"
|
|
askama_escape = "0.1"
|
|
atom_syndication = "0.6"
|
|
clap = "2.33"
|
|
colored = "1.8"
|
|
dotenv = "0.14"
|
|
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" }
|
|
guid-create = "0.1"
|
|
heck = "0.3.0"
|
|
lettre = "0.9.2"
|
|
lettre_email = "0.9.2"
|
|
num_cpus = "1.10"
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "async" }
|
|
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", rev = "async" , features = ["json"] }
|
|
rpassword = "4.0"
|
|
runtime-fmt = "0.4.0"
|
|
scheduled-thread-pool = "0.2.2"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_qs = "0.5"
|
|
shrinkwraprs = "0.2.1"
|
|
syntect = "3.3"
|
|
tokio = "0.2"
|
|
validator = "0.8"
|
|
validator_derive = "0.8"
|
|
webfinger = { git = "https://github.com/Plume-org/webfinger", rev = "update-deps" }
|
|
|
|
[[bin]]
|
|
name = "plume"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies.chrono]
|
|
features = ["serde"]
|
|
version = "0.4"
|
|
|
|
[dependencies.ctrlc]
|
|
features = ["termination"]
|
|
version = "3.1.2"
|
|
|
|
[dependencies.diesel]
|
|
features = ["r2d2", "chrono"]
|
|
version = "*"
|
|
|
|
[dependencies.multipart]
|
|
default-features = false
|
|
features = ["server"]
|
|
version = "0.16"
|
|
|
|
[dependencies.plume-api]
|
|
path = "plume-api"
|
|
|
|
[dependencies.plume-common]
|
|
path = "plume-common"
|
|
|
|
[dependencies.plume-models]
|
|
path = "plume-models"
|
|
|
|
[dependencies.rocket_i18n]
|
|
git = "https://github.com/Plume-org/rocket_i18n"
|
|
branch = "go-async"
|
|
default-features = false
|
|
features = ["rocket"]
|
|
|
|
[build-dependencies]
|
|
ructe = "0.9.0"
|
|
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"]
|