update dependancies #574

Merged
Plume_migration_agent merged 38 commits from master into master 2019-05-12 08:41:48 +00:00
6 changed files with 373 additions and 176 deletions

517
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -8,8 +8,8 @@ repository = "https://github.com/Plume-org/Plume"
activitypub = "0.1.3"
askama_escape = "0.1"
atom_syndication = "0.6"
colored = "1.7"
dotenv = "0.13"
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" }
@ -21,7 +21,7 @@ num_cpus = "1.0"
rocket = "0.4.0"
rocket_contrib = { version = "0.4.0", features = ["json"] }
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
rpassword = "2.0"
rpassword = "3.0"
runtime-fmt = "0.3.0"
scheduled-thread-pool = "0.2.0"
serde = "1.0"
@ -41,7 +41,7 @@ version = "0.4"
[dependencies.ctrlc]
features = ["termination"]
version = "3.1.1"
version = "3.1.2"
[dependencies.diesel]
features = ["r2d2", "chrono"]
@ -66,7 +66,7 @@ git = "https://github.com/fdb-hiroshima/rocket_csrf"
rev = "4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c"
[build-dependencies]
ructe = "0.5.6"
ructe = "0.6.2"
rsass = "0.9"
[features]

View file

@ -8,9 +8,9 @@ name = "plm"
path = "src/main.rs"
[dependencies]
clap = "2.32"
dotenv = "0.13"
rpassword = "2.1"
clap = "2.33"
dotenv = "0.14"
rpassword = "3.0"
[dependencies.diesel]
features = ["r2d2", "chrono"]

View file

@ -11,8 +11,8 @@ array_tool = "1.0"
base64 = "0.10"
heck = "0.3.0"
hex = "0.3"
hyper = "0.12.20"
openssl = "0.10.15"
hyper = "0.12.28"
openssl = "0.10.22"
rocket = "0.4.0"
reqwest = "0.9"
serde = "1.0"

View file

@ -12,7 +12,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "0.4"
quote = "0.6.12"
syn = "0.11.4"
syn = "0.15.27"
[features]

View file

@ -5,15 +5,15 @@ authors = ["Plume contributors"]
[dependencies]
activitypub = "0.1.1"
ammonia = "2.0.0"
ammonia = "2.1.1"
askama_escape = "0.1"
bcrypt = "0.2"
bcrypt = "0.4"
guid-create = "0.1"
heck = "0.3.0"
itertools = "0.8.0"
lazy_static = "*"
migrations_internals= "1.4.0"
openssl = "0.10.15"
openssl = "0.10.22"
rocket = "0.4.0"
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
reqwest = "0.9"
@ -24,7 +24,7 @@ serde_json = "1.0"
tantivy = "0.9.1"
url = "1.7"
webfinger = "0.3.1"
whatlang = "0.7.0"
whatlang = "0.7.1"
[dependencies.chrono]
features = ["serde"]
@ -32,7 +32,7 @@ version = "0.4"
[dependencies.diesel]
features = ["r2d2", "chrono"]
version = "1.3.2"
version = "1.4.2"
[dependencies.plume-api]
path = "../plume-api"