From ad3a8b92d16798d1086815e6918cef95a844ed6c Mon Sep 17 00:00:00 2001 From: Baptiste Gelez Date: Sat, 18 May 2019 13:09:51 +0100 Subject: [PATCH] Theme update (#553) * Start to update the theme - Ligther colors - No more border radius - Buttons are now always colored - Start to redesign the post page (according to the Figma mockups) * Fix build script: it now recompiles everytime a scss file changed * Make sure the article illustrations are not too big * Make articles wider (70 characters) * Better contrast between gray shades * Various improvements * Better mobile style * New style for the footer * Improve comment style * Better responsiveness again * Limit the size of the article cover * Last details? - Improve buttons on the media page - Improve lists * Pin the stdweb version that we use It changed because I removed Cargo.lock to handle a merge conflict I could have updated cargo web too, but it mean I should have re-built the CI docker image and it was taking forever. * Better contrast for links in the header of the article * Add a basic privacy policy * Remove "also" * Fix a few issues - Don't watch static/css in build.rs - Another shade of white - Remove useless margin rule for error messages --- Cargo.lock | 872 +++++++++--------- build.rs | 7 +- plume-front/Cargo.toml | 5 +- po/plume/ar.po | 75 +- po/plume/bg.po | 62 +- po/plume/ca.po | 67 +- po/plume/cs.po | 69 +- po/plume/de.po | 69 +- po/plume/en.po | 60 +- po/plume/eo.po | 61 +- po/plume/es.po | 69 +- po/plume/fr.po | 69 +- po/plume/gl.po | 69 +- po/plume/hi.po | 66 +- po/plume/hr.po | 60 +- po/plume/it.po | 69 +- po/plume/ja.po | 69 +- po/plume/nb.po | 65 +- po/plume/pl.po | 69 +- po/plume/plume.pot | 52 +- po/plume/pt.po | 68 +- po/plume/ro.po | 61 +- po/plume/ru.po | 68 +- po/plume/sk.po | 69 +- po/plume/sr.po | 60 +- po/plume/sv.po | 60 +- src/main.rs | 1 + src/routes/instance.rs | 5 + static/css/_article.scss | 179 +++- static/css/_forms.scss | 46 +- static/css/_global.scss | 123 ++- static/css/_header.scss | 6 +- static/css/_variables.scss | 16 +- static/css/main.scss | 45 +- templates/base.rs.html | 23 +- templates/blogs/details.rs.html | 4 +- templates/instance/about.rs.html | 3 +- templates/instance/federated.rs.html | 2 +- templates/instance/feed.rs.html | 2 +- templates/instance/list.rs.html | 2 +- templates/instance/local.rs.html | 2 +- templates/instance/privacy.rs.html | 13 + templates/instance/users.rs.html | 2 +- templates/medias/details.rs.html | 20 +- templates/medias/index.rs.html | 2 +- templates/partials/comment.rs.html | 59 +- templates/partials/home_feed.rs.html | 2 +- .../partials/instance_description.rs.html | 50 +- templates/posts/details.rs.html | 166 ++-- 49 files changed, 1989 insertions(+), 1174 deletions(-) create mode 100644 templates/instance/privacy.rs.html diff --git a/Cargo.lock b/Cargo.lock index f7975c18..2ed776cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,13 +1,5 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -[[package]] -name = "MacTypes-sys" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "activitypub" version = "0.1.4" @@ -62,7 +54,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "aho-corasick" -version = "0.6.10" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -86,7 +78,7 @@ name = "ansi_term" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -144,7 +136,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -152,9 +144,9 @@ name = "atty" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -168,25 +160,24 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "debug-builders 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace" -version = "0.3.14" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -194,8 +185,8 @@ name = "backtrace-sys" version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -234,15 +225,15 @@ dependencies = [ [[package]] name = "bit-set" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bit-vec" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -300,11 +291,6 @@ name = "build_const" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "bumpalo" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "bytecount" version = "0.5.1" @@ -322,16 +308,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bytes" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cc" -version = "1.0.30" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -341,7 +328,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cfg-if" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -409,12 +396,12 @@ dependencies = [ [[package]] name = "combine" -version = "3.6.7" +version = "3.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -429,7 +416,7 @@ dependencies = [ [[package]] name = "cookie" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -439,18 +426,25 @@ dependencies = [ ] [[package]] -name = "cookie_store" -version = "0.5.1" +name = "cookie" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cookie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cookie_store" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "publicsuffix 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -459,20 +453,17 @@ dependencies = [ [[package]] name = "core-foundation" -version = "0.5.1" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation-sys" -version = "0.5.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "crc" @@ -487,7 +478,7 @@ name = "crc32fast" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -500,7 +491,7 @@ name = "crossbeam" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -543,7 +534,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -556,7 +547,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -576,7 +567,7 @@ name = "crossbeam-utils" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -591,7 +582,7 @@ version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -671,7 +662,7 @@ dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -685,7 +676,7 @@ dependencies = [ "diesel_derives 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "pq-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "r2d2 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "r2d2 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -695,7 +686,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -714,22 +705,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "dotenv" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "downcast-rs" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "dtoa" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -739,7 +730,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "either" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -818,15 +809,16 @@ name = "encoding_rs" version = "0.8.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "error-chain" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -844,7 +836,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -855,8 +847,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -869,12 +861,13 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -883,7 +876,7 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -910,26 +903,25 @@ name = "fs2" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fsevent" -version = "0.2.17" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fsevent-sys" -version = "0.1.6" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -970,7 +962,7 @@ dependencies = [ [[package]] name = "futures" -version = "0.1.25" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -978,7 +970,7 @@ name = "futures-cpupool" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1037,7 +1029,7 @@ dependencies = [ "guid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "guid-parser 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1063,14 +1055,14 @@ dependencies = [ [[package]] name = "h2" -version = "0.1.16" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1088,7 +1080,7 @@ name = "heck" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1101,7 +1093,7 @@ name = "hostname" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1115,7 +1107,7 @@ dependencies = [ "markup5ever 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1125,12 +1117,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "http" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "http-body" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1140,7 +1143,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hyper" -version = "0.10.15" +version = "0.10.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1158,28 +1161,30 @@ dependencies = [ [[package]] name = "hyper" -version = "0.12.28" +version = "0.12.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1188,10 +1193,10 @@ name = "hyper-tls" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.29 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1222,7 +1227,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1230,7 +1235,7 @@ name = "inotify-sys" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1238,32 +1243,21 @@ name = "iovec" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "isatty" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "itertools" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "itoa" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1307,8 +1301,8 @@ dependencies = [ "fast_chemail 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "nom 4.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1326,7 +1320,7 @@ dependencies = [ "lettre 0.9.0 (git+https://github.com/lettre/lettre?rev=c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49)", "mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1339,7 +1333,7 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.50" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1373,7 +1367,7 @@ name = "log" version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1422,8 +1416,8 @@ name = "memmap" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1462,12 +1456,12 @@ name = "mime" version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mime_guess" -version = "1.8.6" +version = "1.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1500,23 +1494,22 @@ name = "miniz_oxide_c_api" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "mio" -version = "0.6.16" +version = "0.6.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1531,7 +1524,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1555,7 +1548,7 @@ dependencies = [ "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mime_guess 1.8.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mime_guess 1.8.7 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1573,18 +1566,18 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.22 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.46 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1593,9 +1586,9 @@ name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1609,9 +1602,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1621,9 +1614,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1634,7 +1627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "nom" -version = "4.2.2" +version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1643,20 +1636,20 @@ dependencies = [ [[package]] name = "notify" -version = "4.0.9" +version = "4.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", - "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "filetime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1694,9 +1687,14 @@ name = "num_cpus" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "numtoa" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "opaque-debug" version = "0.2.2" @@ -1708,10 +1706,10 @@ version = "0.10.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.46 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1726,8 +1724,8 @@ version = "0.9.46" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1737,7 +1735,7 @@ name = "owned-read" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rental 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1772,11 +1770,11 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1784,11 +1782,11 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1806,7 +1804,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "yansi 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1867,7 +1865,7 @@ dependencies = [ "colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "ctrlc 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "dotenv 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dotenv 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "gettext 0.3.0 (git+https://github.com/Plume-org/gettext/?rev=294c54d74c699fbc66502b480a37cc66c1daa7f3)", "gettext-macros 0.4.0 (git+https://github.com/Plume-org/gettext-macros/?rev=a7c605f7edd6bfbfbfe7778026bfefd88d82db10)", "gettext-utils 0.1.0 (git+https://github.com/Plume-org/gettext-macros/?rev=a7c605f7edd6bfbfbfe7778026bfefd88d82db10)", @@ -1880,8 +1878,8 @@ dependencies = [ "plume-api 0.3.0", "plume-common 0.3.0", "plume-models 0.3.0", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket_contrib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket_contrib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocket_csrf 0.1.0 (git+https://github.com/fdb-hiroshima/rocket_csrf?rev=4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c)", "rocket_i18n 0.4.0 (git+https://github.com/Plume-org/rocket_i18n?rev=e922afa7c366038b3433278c03b1456b346074f2)", "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1911,7 +1909,7 @@ version = "0.3.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "dotenv 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dotenv 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "plume-models 0.3.0", "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1928,11 +1926,11 @@ dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.29 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.22 (registry+https://github.com/rust-lang/crates.io-index)", "pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "reqwest 0.9.16 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.9.17 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1946,7 +1944,8 @@ dependencies = [ "gettext-macros 0.4.0 (git+https://github.com/Plume-org/gettext-macros/?rev=a7c605f7edd6bfbfbfe7778026bfefd88d82db10)", "gettext-utils 0.1.0 (git+https://github.com/Plume-org/gettext-macros/?rev=a7c605f7edd6bfbfbfe7778026bfefd88d82db10)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1955,7 +1954,7 @@ version = "0.1.0" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1978,8 +1977,8 @@ dependencies = [ "plume-api 0.3.0", "plume-common 0.3.0", "plume-macro 0.1.0", - "reqwest 0.9.16 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.9.17 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocket_i18n 0.4.0 (git+https://github.com/Plume-org/rocket_i18n?rev=e922afa7c366038b3433278c03b1456b346074f2)", "scheduled-thread-pool 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2046,10 +2045,10 @@ name = "publicsuffix" version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2108,11 +2107,11 @@ dependencies = [ [[package]] name = "r2d2" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "scheduled-thread-pool 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2121,7 +2120,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2131,10 +2130,10 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2144,9 +2143,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2155,16 +2154,16 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2207,12 +2206,12 @@ dependencies = [ [[package]] name = "rand_jitter" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2222,10 +2221,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2255,7 +2254,7 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.1.51" +version = "0.1.54" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2263,17 +2262,17 @@ name = "redox_termios" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex" -version = "1.1.2" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2285,7 +2284,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex-syntax" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2296,12 +2295,12 @@ name = "remove_dir_all" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rental" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2315,39 +2314,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "reqwest" -version = "0.9.16" +version = "0.9.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cookie_store 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.29 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2360,25 +2359,25 @@ name = "ring" version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rocket" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "isatty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "pear 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket_http 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket_http 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "state 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2388,25 +2387,25 @@ dependencies = [ [[package]] name = "rocket_codegen" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "devise 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket_http 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket_http 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "yansi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rocket_contrib" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "notify 4.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "notify 4.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2418,18 +2417,18 @@ source = "git+https://github.com/fdb-hiroshima/rocket_csrf?rev=4a72ea2ec716cb0b2 dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.13.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rocket_http" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cookie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", + "cookie 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "pear 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2445,7 +2444,7 @@ version = "0.4.0" source = "git+https://github.com/Plume-org/rocket_i18n?rev=e922afa7c366038b3433278c03b1456b346074f2#e922afa7c366038b3433278c03b1456b346074f2" dependencies = [ "gettext 0.3.0 (git+https://github.com/Plume-org/gettext/?rev=294c54d74c699fbc66502b480a37cc66c1daa7f3)", - "rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2454,7 +2453,7 @@ version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2464,7 +2463,7 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "nom 4.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2480,7 +2479,7 @@ dependencies = [ "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "md5 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "nom 4.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2499,7 +2498,7 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2512,7 +2511,7 @@ dependencies = [ [[package]] name = "ryu" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2539,7 +2538,7 @@ version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2572,23 +2571,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "security-framework" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "security-framework-sys" -version = "0.2.3" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2608,6 +2605,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "serde" version = "1.0.91" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "serde_derive" @@ -2616,7 +2616,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2624,8 +2624,8 @@ name = "serde_json" version = "1.0.39" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2635,18 +2635,18 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_urlencoded" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2692,7 +2692,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "stdweb" -version = "0.4.17" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2700,9 +2700,8 @@ dependencies = [ "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2714,12 +2713,12 @@ dependencies = [ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "stdweb-internal-macros" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2729,7 +2728,7 @@ dependencies = [ "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2810,7 +2809,7 @@ dependencies = [ [[package]] name = "syn" -version = "0.15.27" +version = "0.15.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2828,12 +2827,12 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2844,19 +2843,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitpacking 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "combine 3.6.7 (registry+https://github.com/rust-lang/crates.io-index)", + "combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast-rs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2865,11 +2864,11 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "notify 4.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "notify 4.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2880,7 +2879,7 @@ dependencies = [ "tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2909,12 +2908,12 @@ name = "tempfile" version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2929,11 +2928,12 @@ dependencies = [ [[package]] name = "termion" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "numtoa 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2958,45 +2958,56 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio" -version = "0.1.16" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-buf" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-current-thread" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-executor" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3004,8 +3015,8 @@ name = "tokio-io" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3015,25 +3026,25 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-sync" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3041,39 +3052,47 @@ name = "tokio-tcp" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-threadpool" -version = "0.1.12" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-timer" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-trace-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3099,7 +3118,7 @@ name = "try_from" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3135,7 +3154,7 @@ dependencies = [ [[package]] name = "unicase" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3159,7 +3178,7 @@ dependencies = [ [[package]] name = "unicode-segmentation" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3212,7 +3231,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "uuid" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3226,7 +3245,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3242,8 +3261,8 @@ dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)", "validator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3278,7 +3297,7 @@ version = "2.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3287,65 +3306,17 @@ name = "want" version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "wasm-bindgen" -version = "0.2.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "wasm-bindgen-macro 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bumpalo 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.43" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "webfinger" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "reqwest 0.9.16 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.9.17 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3366,7 +3337,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3388,7 +3359,7 @@ name = "winapi-util" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3404,7 +3375,7 @@ dependencies = [ "cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3412,7 +3383,7 @@ name = "winutil" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3435,13 +3406,12 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] -"checksum MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f" "checksum activitypub 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08018b04725f5107d4a64e850f8a44a1f8a7e72abf0ca09125e3054921d26fd9" "checksum activitystreams-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "48db826c588a009960d74530e7c215e21fae130f585362504dc6b6357e5ce86b" "checksum activitystreams-traits 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "670ef03168e704b0cae242e7a5d8b40506772b339687e01a3496fc4afe2e8542" "checksum activitystreams-types 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "224d1e28d043f4275139445475da8866f0a430ecfc9047c9a15fbe3c70c22b04" "checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" -"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +"checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c" "checksum ammonia 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c799ecf1ad77acb48b643e2f45b12d60ee41576287fc575031aa020de88b8f45" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "34fde25430d87a9388dadbe6e34d7f72a462c8b43ac8d309b42b0a8505d7e2a5" @@ -3456,14 +3426,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" "checksum backtrace 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "150ae7828afa7afb6d474f909d64072d21de1f3365b6e8ad8029bf7b1c6350a0" -"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" +"checksum backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "f92d5d536fa03dc3d93711d97bac1fae2eb59aba467ca4c6600c0119da614f51" "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" "checksum base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d55aa264e822dbafa12db4d54767aff17c6ba55ea2d8559b3e17392c7d000e5d" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" "checksum bcrypt 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1bae9179df8ecf490f612b709fd8aa04408ed60ac2db50334a68fa411fd01ef5" -"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" -"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" +"checksum bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80" +"checksum bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb" "checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" "checksum bitpacking 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "667f3f518358b2cf64891b46a6dd2eb794e9f80d39f7eb5974f4784bcda9a61b" @@ -3472,26 +3442,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum buf_redux 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72f25c67abbf523ff8457771622fb731ac4a2391439de33bc60febcdee1749c9" "checksum bufstream 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8" "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" -"checksum bumpalo 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4639720be048090544634e0402490838995ccdc9d2fe648f528f30d3c33ae71f" "checksum bytecount 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be0fdd54b507df8f22012890aadd099979befdba27713c767993f8380112ca7c" "checksum byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96c8b41881888cc08af32d47ac4edd52bc7fa27fef774be47a92443756451304" "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" -"checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" -"checksum cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)" = "d01c69d08ff207f231f07196e30f84c70f1c815b04f980f8b7b01ff01f05eb92" +"checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +"checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d" "checksum census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "641317709904ba3c1ad137cb5d88ec9d8c03c07de087b2cff5e84ec565c7e299" -"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" +"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" "checksum cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "64a4b57c8f4e3a2e9ac07e0f6abc9c24b6fc9e1b54c3478cfb598f3d0023e51c" "checksum chomp 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9f74ad218e66339b11fd23f693fb8f1d621e80ba6ac218297be26073365d163d" "checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cdb90b60f2927f8d76139c72dbde7e10c3a2bc47c8594c9c7a66529f2687c03" -"checksum combine 3.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d2623b3542b48f4427e15ddd4995186decb594ebbd70271463886584b4a114b9" +"checksum combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" "checksum conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "78ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299" -"checksum cookie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1465f8134efa296b4c19db34d909637cb2bf0f7aaf21299e23e18fa29ac557cf" -"checksum cookie_store 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b0d2f2ecb21dce00e2453268370312978af9b8024020c7a37ae2cc6dbbe64685" -"checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" -"checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" +"checksum cookie 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "99be24cfcf40d56ed37fd11c2123be833959bbc5bddecb46e1c2e442e15fa3e0" +"checksum cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5" +"checksum cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c" +"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" +"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be" @@ -3519,11 +3489,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum diesel_derives 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "62a27666098617d52c487a41f70de23d44a1dc1f3aa5877ceba2790fb1f1cab4" "checksum diesel_migrations 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c" "checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" -"checksum dotenv 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7bdb5b956a911106b6b479cdc6bc1364d359a32299f17b49994f5327132e18d9" -"checksum downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "18df8ce4470c189d18aa926022da57544f31e154631eb4cfe796aea97051fe6c" -"checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd" +"checksum dotenv 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4424bad868b0ffe6ae351ee463526ba625bbca817978293bbe6bb7dc1804a175" +"checksum downcast-rs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b92dfd5c2f75260cbf750572f95d387e7ca0ba5e3fbe9e1a33f23025be020f" +"checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e" "checksum either 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a39bffec1e2015c5d8a6773cb0cf48d0d758c842398f624c34969071f5499ea7" -"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" +"checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b" "checksum email 0.0.19 (git+https://github.com/lettre/rust-email)" = "" "checksum encoding 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" "checksum encoding-index-japanese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" @@ -3533,25 +3503,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum encoding-index-tradchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" "checksum encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" "checksum encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4155785c79f2f6701f185eb2e6b4caf0555ec03477cb4c70db67b465311620ed" -"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" +"checksum error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ab49e9dcb602294bc42f9a7dfc9bc6e936fca4418ea300dbfb84fe16de0b7d9" "checksum fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4eca5f0f9a67b3e504f3a0ab0bc22efb19b241c0313be5b897ee7e8d85a1805a" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum fast_chemail 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4" -"checksum filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646" +"checksum filetime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "450537dc346f0c4d738dda31e790da1da5d4bd12145aad4da0d03d713cb3794f" "checksum flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f87e68aa82b2de08a6e037f1385455759df6e445a8df5e005b4297191dbf18aa" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" "checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" -"checksum fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c4bbbf71584aeed076100b5665ac14e3d85eeb31fdbb45fbd41ef9a682b5ec05" -"checksum fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874" +"checksum fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" +"checksum fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" "checksum fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "db72126ca7dff566cdbbdd54af44668c544897d9d3862b198141f176f1238bdf" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b" -"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)" = "a2037ec1c6c1c4f79557762eab1f7eae1f64f6cb418ace90fae88f0942b60139" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" "checksum gettext 0.3.0 (git+https://github.com/Plume-org/gettext/?rev=294c54d74c699fbc66502b480a37cc66c1daa7f3)" = "" @@ -3561,17 +3531,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum guid-create 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fcea207bf7a6092166ab590f98fe5dde5a7deed1f1920d98dcac31f80814c40d" "checksum guid-macro-impl 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08d50f7c496073b5a5dec0f6f1c149113a50960ce25dd2a559987a5a71190816" "checksum guid-parser 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "abc7adb441828023999e6cff9eb1ea63156f7ec37ab5bf690005e8fc6c1148ad" -"checksum h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddb2b25a33e231484694267af28fec74ac63b5ccf51ee2065a5e313b834d836e" +"checksum h2 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "2b53def7bb0253af7718036fe9338c15defd209136819464384f3a553e07481b" "checksum hashbrown 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "570178d5e4952010d138b0f1d581271ff3a02406d990f887d1e87e3d6e43b0ac" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" "checksum hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "21ceb46a83a85e824ef93669c8b390009623863b5c195d1ba747292c0c72f94e" "checksum html5ever 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce65ac8028cf5a287a7dbf6c4e0a6cf2dcf022ed5b167a81bae66ebf599a8b7" "checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" -"checksum http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a" +"checksum http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a" +"checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" -"checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" -"checksum hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)" = "e8e4606fed1c162e3a63d408c07584429f49a4f34c7176cb6cbee60e78f2372c" +"checksum hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" +"checksum hyper 0.12.29 (registry+https://github.com/rust-lang/crates.io-index)" = "e2cd6adf83b3347d36e271f030621a8cf95fd1fd0760546b9fc5a24a0f1447c7" "checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum if_chain 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4bac95d9aa0624e7b78187d6fb8ab012b41d9f6f54b1bcb61e61c4845f8357ec" @@ -3579,9 +3550,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718" "checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" -"checksum isatty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e31a8281fc93ec9693494da65fbf28c0c2aa60a2eaec25dc58e2f31952e95edc" "checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" -"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" @@ -3590,7 +3560,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum lettre 0.9.0 (git+https://github.com/lettre/lettre?rev=c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49)" = "" "checksum lettre_email 0.9.0 (git+https://github.com/lettre/lettre?rev=c988b1760ad8179d9e7f3fb8594d2b86cf2a0a49)" = "" "checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" -"checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1" +"checksum libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "42914d39aad277d9e176efbdad68acb1d5443ab65afe0e0e4f0d49352a950880" "checksum libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd6457c70bbff456d9fe49deaba35ec47c3e598bf8d7950ff0575ceb7a8a6ad1" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" @@ -3607,28 +3577,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum migrations_macros 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1664412abf7db2b8a6d58be42a38b099780cc542b5b350383b805d88932833fe" "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" "checksum mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425" -"checksum mime_guess 1.8.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2d4c0961143b8efdcfa29c3ae63281601b446a4a668165454b6c90f8024954c5" +"checksum mime_guess 1.8.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0d977de9ee851a0b16e932979515c0f3da82403183879811bc97d50bd9cc50f7" "checksum mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed" "checksum miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c468f2369f07d651a5d0bb2c9079f8488a66d5466efe42d0c5c6466edcb7f71e" "checksum miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b7fe927a42e3807ef71defb191dc87d4e24479b221e67015fe38ae2b7b447bab" -"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" +"checksum mio 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "049ba5ca2b63e837adeee724aa9e36b408ed593529dcc802aa96ca14bd329bdf" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum multipart 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "136eed74cadb9edd2651ffba732b19a450316b680e4f48d6c79e905799e19d01" "checksum murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" -"checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" +"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30" "checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" "checksum nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46f0f3210768d796e8fa79ec70ee6af172dacbe7147f5e69be5240a47778302b" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" -"checksum nom 4.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "22293d25d3f33a8567cc8a1dc20f40c7eeb761ce83d0fcca059858580790cac3" -"checksum notify 4.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9cc7ed2bd4b7edad3ee93b659c38e53dabb619f7274e127a0fab054ad2bb998d" +"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" +"checksum notify 4.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ceb1a496a81dd6125f68ce772b41b83efe89a54d21768ed6d0c33c95832604e6" "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" "checksum num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4e96f040177bb3da242b5b1ecf3f54b5d5af3efbbfb18608977a5d2767b22f10" "checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" "checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" "checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum numtoa 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" "checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" "checksum openssl 0.10.22 (registry+https://github.com/rust-lang/crates.io-index)" = "a51f452b82d622fc8dd973d7266e9055ac64af25b957d9ced3989142dc61cb6b" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" @@ -3662,7 +3633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum quote 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1eca14c727ad12702eb4b6bfb5a232287dcf8385cb8ca83a3eeaf6519c44c408" "checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" "checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" -"checksum r2d2 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "5d746fc8a0dab19ccea7ff73ad535854e90ddb3b4b8cdce953dd5cd0b2e7bd22" +"checksum r2d2 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9dd8a293251281a4d02848925fcdbbc9f466ddb4965981bb06680359b3d12091" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" @@ -3672,36 +3643,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252" "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" +"checksum regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58" "checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" -"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" -"checksum rental 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ca24bf9b98e3df0bb359f1bbb8ef993a0093d8432500c5eaf3ae724f30b5f754" +"checksum rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d57522f275b02e67391947c98f99d55f297fefcb6699bb000340696e63620194" "checksum rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a269533a9b93bbaa4848260e51b64564cc445d46185979f31974ec703374803a" -"checksum reqwest 0.9.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddcfd2c13c6af0f9c45a1086be3b9c68af79e4430b42790759e2d34cce2a6c60" +"checksum reqwest 0.9.17 (registry+https://github.com/rust-lang/crates.io-index)" = "e57803405f8ea0eb041c1567dac36127e0c8caa1251c843cb03d43fd767b3d50" "checksum rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4f089652ca87f5a82a62935ec6172a534066c7b97be003cc8f702ee9a7a59c92" "checksum ring 0.13.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2c4db68a2e35f3497146b7e4563df7d4773a2433230c5e4b448328e31740458a" -"checksum rocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "242154377a85c2a9e036fc31ffc8c200b9e1f22a196e47baa3b57716606ca89d" -"checksum rocket_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d907d6d458c859651c1cf4c8fa99b77685082bde0561db6a4600b365058f710" -"checksum rocket_contrib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f73e161dad5730435f51c815a5c6831d2e57b6b4299b1bf609d31b09aa9a2fa7" +"checksum rocket 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "55b83fcf219c8b4980220231d5dd9eae167bdc63449fdab0a04b6c8b8cd361a8" +"checksum rocket_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5549dc59a729fbd0e6f5d5de33ba136340228871633485e4946664d36289ffd7" +"checksum rocket_contrib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5af691b5f5c06c3a30213217696681d3d3bdc2f10428fa3ce6bbaeab156b6409" "checksum rocket_csrf 0.1.0 (git+https://github.com/fdb-hiroshima/rocket_csrf?rev=4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c)" = "" -"checksum rocket_http 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba9d4f2ce5bba6e1b6d3100493bbad63879e99bbf6b4365d61e6f781daab324d" +"checksum rocket_http 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "abec045da00893bd4eef6084307a4bec0742278a7635a6a8b943da023202a5f7" "checksum rocket_i18n 0.4.0 (git+https://github.com/Plume-org/rocket_i18n?rev=e922afa7c366038b3433278c03b1456b346074f2)" = "" "checksum rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34fa7bcae7fca3c8471e8417088bbc3ad9af8066b0ecf4f3c0d98a0d772716e" "checksum rsass 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4534cc03040beacd2668621815f26fe57e5b7cfe085790f98e5e87c1612316" "checksum ructe 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "976a8c6d7b90407935443485911ba072dddbe188f14e173c687b16e0b5d22b43" "checksum runtime-fmt 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "647a821d66049faccc993fc3c379d1181b81a484097495cda79ffdb17b55b87f" "checksum rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05928c187b85b38f6b98db43057a24f0245163635a5ce6325a4f77a833d646aa" -"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f" "checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" "checksum same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267" @@ -3710,15 +3681,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "817a3a15e704545ce59ed2b5c60a5d32bda4d7869befb8b36667b658a6c00b43" "checksum scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59a076157c1e2dc561d8de585151ee6965d910dd4dcb5dabb7ae3e83981a6c57" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" -"checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05" -"checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" +"checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" +"checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)" = "a72e9b96fa45ce22a4bc23da3858dfccfd60acd28a25bcd328a98fdd6bea43fd" "checksum serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)" = "101b495b109a3e3ca8c4cbe44cf62391527cdfb6ba15821c5ce80bcd5ea23f9f" "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" "checksum serde_qs 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "35965fa1d2413717053d67c2df1f5c3e1763fbf77200ea7e767523707bd5a0af" -"checksum serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d48f9f99cd749a2de71d29da5f948de7f2764cc5a9d7f3c97e3514d4ee6eabf2" +"checksum serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" @@ -3726,9 +3697,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95d697d63d44ad8b78b8d235bf85b34022a78af292c8918527c5f0cffdde7f43" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum state 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7345c971d1ef21ffdbd103a75990a15eb03604fc8b8852ca8cb418ee1a099028" -"checksum stdweb 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c34362bb10ac1a9439674795cc0e1bdcb0c46444c8fd4874ef39a01d9a8a8f24" +"checksum stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)" = "5eafd45550bc406cfa179ea263ba0935da87adf220dab40e2c25c4675edc49d8" "checksum stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e21ebd9179de08f2300a65454268a17ea3de204627458588c84319c4def3930" -"checksum stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e68f7d08b76979a43e93fe043b66d2626e35d41d68b0b85519202c6dd8ac59fa" +"checksum stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1635afd059cbfac7d5b1274f0c44cec110c1e013c48e8bbc22e07e52696cf887" "checksum stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a2a2f4a2eb556337b2d1a302630bbddf989ae383c70393e89b48152b9896cbda" "checksum string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b" "checksum string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423" @@ -3738,27 +3709,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" "checksum syn 0.12.15 (registry+https://github.com/rust-lang/crates.io-index)" = "c97c05b8ebc34ddd6b967994d5c6e9852fa92f8b82b3858c39451f97346dcce5" "checksum syn 0.13.11 (registry+https://github.com/rust-lang/crates.io-index)" = "14f9bf6292f3a61d2c716723fdb789a41bbe104168e6f496dc6497e531ea1b9b" -"checksum syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)" = "525bd55255f03c816e5d7f615587bd13030c7103354fadb104993dcee6a788ec" +"checksum syn 0.15.34 (registry+https://github.com/rust-lang/crates.io-index)" = "a1393e4a97a19c01e900df2aec855a29f71cf02c402e2f443b8d2747c25c5dbe" "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" -"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" "checksum tantivy 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "67a63475a55950ad47573f881d912b8fab7f1f53a9cc2e036185efc92b471402" "checksum tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16b22af5ff09b8897093287642a5aaee6f30eb496526ef83a8dd0f4c636ac367" "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" "checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" "checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b" -"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum termion 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dde0593aeb8d47accea5392b39350015b5eccb12c0d98044d856983d89548dea" "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" -"checksum tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fcaabb3cec70485d0df6e9454fe514393ad1c4070dee8915f11041e95630b230" -"checksum tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c756b04680eea21902a46fca4e9f410a2332c04995af590e07ff262e2193a9a3" -"checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0" +"checksum tokio 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "94a1f9396aec29d31bb16c24d155cfa144d1af91c40740125db3131bdaf76da8" +"checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" +"checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" +"checksum tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "83ea44c6c0773cc034771693711c35c677b4b5a4b21b9e7071704c54de7d555e" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" -"checksum tokio-sync 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1bf2b9dac2a0509b5cfd1df5aa25eafacb616a42a491a13604d6bbeab4486363" +"checksum tokio-sync 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "5b2f843ffdf8d6e1f90bddd48da43f99ab071660cd92b7ec560ef3cdfd7a409a" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "742e511f6ce2298aeb86fc9ea0d8df81c2388c6ebae3dc8a7316e8c9df0df801" -"checksum tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2910970404ba6fa78c5539126a9ae2045d62e3713041e447f695f41405a120c6" +"checksum tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72558af20be886ea124595ea0f806dd5703b8958e4705429dd58b3d8231f72f2" +"checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" +"checksum tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" @@ -3768,10 +3741,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" -"checksum unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d3218ea14b4edcaccfa0df0a64a3792a2c32cc706f1b336e48867f9d3147f90" +"checksum unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" -"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" +"checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" @@ -3780,7 +3753,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" "checksum utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7" "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" -"checksum uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0238db0c5b605dd1cf51de0f21766f97fba2645897024461d6a00c036819a768" +"checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" "checksum validator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "236a5eda3df2c877872e98dbc55d497d943792e6405d8fc65bd4f8a5e3b53c99" "checksum validator_derive 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d360d6f5754972c0c1da14fb3d5580daa31aee566e1e45e2f8d3bf5950ecd3e9" "checksum variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3abfc2be1fb59663871379ea884fd81de80c496f2274e021c01d6fe56cd77b05" @@ -3790,15 +3763,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1" "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" -"checksum wasm-bindgen 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "546e4ab1bf7f9a3532d21472efd72d01a23f55abd885c60b165f393394dbad95" -"checksum wasm-bindgen-backend 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "7b84bedebfd6ae3522cce59dec6b52ee6c53ceeaae8541668c15b9f42df8ecab" -"checksum wasm-bindgen-macro 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "f2a033fc6bfd5e486a488b0e19d7d1bb29e667ebb91db85f698381a8aa831786" -"checksum wasm-bindgen-macro-support 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "fba68375ef8f095c4a169c093c95ed2e1b5e44f7872f3bcbcafe2c51b4a80480" -"checksum wasm-bindgen-shared 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "321949f4d7f7bf7a49dccd464bdc46581b180f761d9505e4943926d50b2a4a64" "checksum webfinger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edc8f298f29f04bf5b6a85d7d448de4f16b7d45807d0a3ec422efcfbf1960519" "checksum whatlang 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bf61042986b0f0612917b71609b861d695e76c55f9fc81b8a8f8cd363646816c" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" diff --git a/build.rs b/build.rs index f1e2e819..812a4202 100644 --- a/build.rs +++ b/build.rs @@ -41,7 +41,12 @@ fn main() { let in_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap()).join("templates"); compile_templates(&in_dir, &out_dir).expect("compile templates"); - println!("cargo:rerun-if-changed=static/css"); + println!("cargo:rerun-if-changed=static/css/_article.scss"); + println!("cargo:rerun-if-changed=static/css/_forms.scss"); + println!("cargo:rerun-if-changed=static/css/_global.scss"); + println!("cargo:rerun-if-changed=static/css/_header.scss"); + println!("cargo:rerun-if-changed=static/css/_variables.scss"); + println!("cargo:rerun-if-changed=static/css/main.scss"); let mut out = File::create("static/css/main.css").expect("Couldn't create main.css"); out.write_all( &rsass::compile_scss_file( diff --git a/plume-front/Cargo.toml b/plume-front/Cargo.toml index 7e93c018..61cb26d0 100644 --- a/plume-front/Cargo.toml +++ b/plume-front/Cargo.toml @@ -4,8 +4,9 @@ version = "0.3.0" authors = ["Plume contributors"] [dependencies] -stdweb = "0.4" +stdweb = "=0.4.14" +stdweb-internal-runtime = "=0.1.3" 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" } -lazy_static = "1.3" \ No newline at end of file +lazy_static = "1.3" diff --git a/po/plume/ar.po b/po/plume/ar.po index c3df20f3..ca81f770 100644 --- a/po/plume/ar.po +++ b/po/plume/ar.po @@ -281,15 +281,21 @@ msgstr "إنشاء حساب" msgid "About this instance" msgstr "عن مثيل الخادوم هذا" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "الإدارة" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "الشيفرة المصدرية" msgid "Matrix room" msgstr "غرفة المحادثة على ماتريكس" -msgid "Administration" -msgstr "الإدارة" - msgid "Welcome to {}" msgstr "مرحبا بكم في {0}" @@ -365,6 +371,9 @@ msgstr "احفظ هذه الإعدادات" msgid "About {0}" msgstr "عن {0}" +msgid "Runs Plume {0}" +msgstr "مدعوم بـ Plume {0}" + msgid "Home to {0} people" msgstr "يستضيف {0} أشخاص" @@ -377,8 +386,22 @@ msgstr "" msgid "Administred by" msgstr "يديره" -msgid "Runs Plume {0}" -msgstr "مدعوم بـ Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -607,8 +630,7 @@ msgstr "اسم نطاق مثيل الخادم" msgid "Posted by one of these authors" msgstr "" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "المؤلفون" # src/template_utils.rs:305 @@ -632,17 +654,14 @@ msgstr "" msgid "Article license" msgstr "رخصة المقال" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" +msgstr "" + +msgid "Search result" msgstr "نتائج البحث" -#, fuzzy -msgid "Search result(s)" -msgstr "نتائج البحث" - -#, fuzzy -msgid "No results for your query" -msgstr "الانتقال إلى معرضك" +msgid "No result for your query" +msgstr "" msgid "No more results for your query" msgstr "" @@ -744,12 +763,6 @@ msgstr "انشر منشورك" msgid "Written by {0}" msgstr "كتبه {0}" -msgid "Edit" -msgstr "تعديل" - -msgid "Delete this article" -msgstr "احذف هذا المقال" - msgid "All rights reserved." msgstr "جميع الحقوق محفوظة." @@ -807,6 +820,18 @@ msgstr "ارسال التعليق" msgid "No comments yet. Be the first to react!" msgstr "لا توجد هناك تعليقات بعد. كن أول مَن يتفاعل معه!" +msgid "Delete" +msgstr "حذف" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "تعديل" + msgid "Invalid CSRF token" msgstr "" @@ -928,9 +953,6 @@ msgstr "ليس لديك أية وسائط بعد." msgid "Content warning: {0}" msgstr "تحذير عن المحتوى: {0}" -msgid "Delete" -msgstr "حذف" - msgid "Details" msgstr "التفاصيل" @@ -963,3 +985,6 @@ msgstr "" msgid "Use as an avatar" msgstr "استخدمها كصورة رمزية" + +#~ msgid "Delete this article" +#~ msgstr "احذف هذا المقال" diff --git a/po/plume/bg.po b/po/plume/bg.po index 8ae1f149..8d53a4b6 100644 --- a/po/plume/bg.po +++ b/po/plume/bg.po @@ -279,15 +279,21 @@ msgstr "Регистрация" msgid "About this instance" msgstr "За тази инстанция" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Aдминистрация" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Изходен код" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "Aдминистрация" - msgid "Welcome to {}" msgstr "" @@ -363,6 +369,9 @@ msgstr "Запаметете тези настройките" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "Писти Pluma {0}" + msgid "Home to {0} people" msgstr "" @@ -375,8 +384,22 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" -msgstr "Писти Pluma {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" msgid "Follow {}" msgstr "" @@ -605,7 +628,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -629,13 +652,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -737,12 +760,6 @@ msgstr "" msgid "Written by {0}" msgstr "Написано от {0}" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -794,6 +811,18 @@ msgstr "Публикувайте коментар" msgid "No comments yet. Be the first to react!" msgstr "Все още няма коментари. Бъдете първите!" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -910,9 +939,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/ca.po b/po/plume/ca.po index 862f6ec9..9388b893 100644 --- a/po/plume/ca.po +++ b/po/plume/ca.po @@ -275,15 +275,21 @@ msgstr "Registre" msgid "About this instance" msgstr "Quant a aquesta instància" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administració" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Codi font" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "Administració" - msgid "Welcome to {}" msgstr "Us donem la benvinguda a {}" @@ -359,6 +365,9 @@ msgstr "" msgid "About {0}" msgstr "Quant a {0}" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -371,7 +380,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -599,8 +622,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autors" # src/template_utils.rs:305 @@ -624,16 +646,13 @@ msgstr "Publicat segons aquesta llicència" msgid "Article license" msgstr "" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Resultats de la cerca «{0}»" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Resultats de la cerca" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "La vostra consulta no ha produït cap resultat" msgid "No more results for your query" @@ -735,12 +754,6 @@ msgstr "" msgid "Written by {0}" msgstr "Escrit per {0}" -msgid "Edit" -msgstr "Edita" - -msgid "Delete this article" -msgstr "Suprimeix aquest article" - msgid "All rights reserved." msgstr "Tots els drets reservats." @@ -790,6 +803,18 @@ msgstr "Envia el comentari" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "Suprimeix" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Edita" + msgid "Invalid CSRF token" msgstr "" @@ -906,9 +931,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "Suprimeix" - msgid "Details" msgstr "Detalls" @@ -941,3 +963,6 @@ msgstr "" msgid "Use as an avatar" msgstr "" + +#~ msgid "Delete this article" +#~ msgstr "Suprimeix aquest article" diff --git a/po/plume/cs.po b/po/plume/cs.po index 86991363..bb45323f 100644 --- a/po/plume/cs.po +++ b/po/plume/cs.po @@ -282,15 +282,21 @@ msgstr "Vytvořit účet" msgid "About this instance" msgstr "O této instanci" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Správa" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Zdrojový kód" msgid "Matrix room" msgstr "Matrix místnost" -msgid "Administration" -msgstr "Správa" - msgid "Welcome to {}" msgstr "Vítejte na {}" @@ -366,6 +372,9 @@ msgstr "Uložit tyhle nastavení" msgid "About {0}" msgstr "O {0}" +msgid "Runs Plume {0}" +msgstr "Beží na Plume {0}" + msgid "Home to {0} people" msgstr "Domov pro {0} lidí" @@ -378,8 +387,22 @@ msgstr "A jsou napojeni na {0} dalších instancí" msgid "Administred by" msgstr "Správcem je" -msgid "Runs Plume {0}" -msgstr "Beží na Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" msgid "Follow {}" msgstr "Následovat {}" @@ -618,8 +641,7 @@ msgstr "Doména instance" msgid "Posted by one of these authors" msgstr "Zveřejněno na jedném z těchto autorů" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autoři" # src/template_utils.rs:305 @@ -643,16 +665,13 @@ msgstr "Publikováno pod touto licenci" msgid "Article license" msgstr "Licence článku" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Výsledky hledání pro \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Výsledek hledání" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Žádný výsledek nenalzen pro váš dotaz" msgid "No more results for your query" @@ -758,12 +777,6 @@ msgstr "Publikovat svůj příspěvek" msgid "Written by {0}" msgstr "Napsal/a {0}" -msgid "Edit" -msgstr "Upravit" - -msgid "Delete this article" -msgstr "Vymazat tento článek" - msgid "All rights reserved." msgstr "Všechna práva vyhrazena." @@ -819,6 +832,18 @@ msgstr "Odeslat komentář" msgid "No comments yet. Be the first to react!" msgstr "Zatím bez komentáře. Buďte první, kdo zareaguje!" +msgid "Delete" +msgstr "Smazat" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Upravit" + msgid "Invalid CSRF token" msgstr "Neplatný CSRF token" @@ -942,9 +967,6 @@ msgstr "Zatím nemáte nahrané žádné média." msgid "Content warning: {0}" msgstr "Upozornení na obsah: {0}" -msgid "Delete" -msgstr "Smazat" - msgid "Details" msgstr "Podrobnosti" @@ -977,3 +999,6 @@ msgstr "Pro vložení tohoto média zkopírujte tento kód do vašich článků: msgid "Use as an avatar" msgstr "Použít jak avatar" + +#~ msgid "Delete this article" +#~ msgstr "Vymazat tento článek" diff --git a/po/plume/de.po b/po/plume/de.po index 83476b38..c3e53678 100644 --- a/po/plume/de.po +++ b/po/plume/de.po @@ -280,15 +280,21 @@ msgstr "Registrieren" msgid "About this instance" msgstr "Über diese Instanz" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administration" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Quelltext" msgid "Matrix room" msgstr "Matrix-Raum" -msgid "Administration" -msgstr "Administration" - msgid "Welcome to {}" msgstr "Willkommen bei {}" @@ -364,6 +370,9 @@ msgstr "Diese Einstellungen speichern" msgid "About {0}" msgstr "Über {0}" +msgid "Runs Plume {0}" +msgstr "Verwendet Plume {0}" + msgid "Home to {0} people" msgstr "Heimat von {0} Personen" @@ -376,8 +385,22 @@ msgstr "Und mit {0} anderen Instanzen verbunden sind" msgid "Administred by" msgstr "Administriert von" -msgid "Runs Plume {0}" -msgstr "Verwendet Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -616,8 +639,7 @@ msgstr "Instanz-Domain" msgid "Posted by one of these authors" msgstr "Von eine*r dieser Autor*innen veröffentlicht" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autoren" # src/template_utils.rs:305 @@ -641,16 +663,13 @@ msgstr "Unter dieser Lizenz veröffentlicht" msgid "Article license" msgstr "Artikel-Lizenz" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Suchergebnis für {0}" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Suchergebnis" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Keine Ergebnisse für deine Anfrage" msgid "No more results for your query" @@ -757,12 +776,6 @@ msgstr "Veröffentliche deinen Beitrag" msgid "Written by {0}" msgstr "Geschrieben von {0}" -msgid "Edit" -msgstr "Bearbeiten" - -msgid "Delete this article" -msgstr "Diesen Artikel löschen" - msgid "All rights reserved." msgstr "Alle Rechte vorbehalten." @@ -812,6 +825,18 @@ msgstr "Kommentar abschicken" msgid "No comments yet. Be the first to react!" msgstr "Noch keine Kommentare. Sei der erste, der reagiert!" +msgid "Delete" +msgstr "Löschen" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Bearbeiten" + msgid "Invalid CSRF token" msgstr "Ungültiges CSRF-Token" @@ -937,9 +962,6 @@ msgstr "Du hast noch keine Medien." msgid "Content warning: {0}" msgstr "Warnhinweis zum Inhalt: {0}" -msgid "Delete" -msgstr "Löschen" - msgid "Details" msgstr "Details" @@ -972,3 +994,6 @@ msgstr "Kopiere das in deine Artikel, um dieses Medium einzufügen:" msgid "Use as an avatar" msgstr "Als Profilbild nutzen" + +#~ msgid "Delete this article" +#~ msgstr "Diesen Artikel löschen" diff --git a/po/plume/en.po b/po/plume/en.po index 0ed08983..0e2adc1e 100644 --- a/po/plume/en.po +++ b/po/plume/en.po @@ -275,15 +275,21 @@ msgstr "" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "" - msgid "Welcome to {}" msgstr "" @@ -359,6 +365,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -371,7 +380,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -599,7 +622,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -623,13 +646,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -731,12 +754,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -786,6 +803,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -901,9 +930,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/eo.po b/po/plume/eo.po index c99eb05a..2c0f12a8 100644 --- a/po/plume/eo.po +++ b/po/plume/eo.po @@ -279,15 +279,21 @@ msgstr "" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "" - msgid "Welcome to {}" msgstr "" @@ -363,6 +369,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -375,7 +384,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -603,8 +626,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Verkistoj" # src/template_utils.rs:305 @@ -628,13 +650,13 @@ msgstr "Eldonita sub ĉi tiu permesilo" msgid "Article license" msgstr "Artikola permesilo" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -736,12 +758,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "Redakti" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -791,6 +807,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Redakti" + msgid "Invalid CSRF token" msgstr "" @@ -906,9 +934,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/es.po b/po/plume/es.po index 3384ed43..59c3b303 100644 --- a/po/plume/es.po +++ b/po/plume/es.po @@ -280,15 +280,21 @@ msgstr "Registrarse" msgid "About this instance" msgstr "Acerca de esta instancia" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administración" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Código fuente" msgid "Matrix room" msgstr "Sala de matriz" -msgid "Administration" -msgstr "Administración" - msgid "Welcome to {}" msgstr "Bienvenido a {}" @@ -364,6 +370,9 @@ msgstr "Guardar estos ajustes" msgid "About {0}" msgstr "Acerca de {0}" +msgid "Runs Plume {0}" +msgstr "Ejecuta Pluma {0}" + msgid "Home to {0} people" msgstr "Hogar de {0} usuarios" @@ -376,8 +385,22 @@ msgstr "Y están conectados a {0} otras instancias" msgid "Administred by" msgstr "Administrado por" -msgid "Runs Plume {0}" -msgstr "Ejecuta Pluma {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -611,8 +634,7 @@ msgstr "Dominio de instancia" msgid "Posted by one of these authors" msgstr "Publicado por uno de estos autores" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autores" # src/template_utils.rs:305 @@ -636,16 +658,13 @@ msgstr "Publicado bajo esta licencia" msgid "Article license" msgstr "Licencia de artículo" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Resultado de búsqueda para \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Resultado de búsqueda" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "No hay resultado para su consulta" msgid "No more results for your query" @@ -751,12 +770,6 @@ msgstr "Publique su artículo" msgid "Written by {0}" msgstr "Escrito por {0}" -msgid "Edit" -msgstr "Editar" - -msgid "Delete this article" -msgstr "Eliminar este artículo" - msgid "All rights reserved." msgstr "Todos los derechos reservados." @@ -806,6 +819,18 @@ msgstr "Enviar comentario" msgid "No comments yet. Be the first to react!" msgstr "No hay comentarios todavía. ¡Sea el primero en reaccionar!" +msgid "Delete" +msgstr "Eliminar" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Editar" + msgid "Invalid CSRF token" msgstr "Token CSRF inválido" @@ -930,9 +955,6 @@ msgstr "Todavía no tiene ningún medio." msgid "Content warning: {0}" msgstr "Aviso de contenido: {0}" -msgid "Delete" -msgstr "Eliminar" - msgid "Details" msgstr "Detalles" @@ -967,3 +989,6 @@ msgstr "Cópielo en sus artículos, para insertar este medio:" msgid "Use as an avatar" msgstr "Usar como avatar" + +#~ msgid "Delete this article" +#~ msgstr "Eliminar este artículo" diff --git a/po/plume/fr.po b/po/plume/fr.po index 9125462c..98cada5a 100644 --- a/po/plume/fr.po +++ b/po/plume/fr.po @@ -280,15 +280,21 @@ msgstr "S’inscrire" msgid "About this instance" msgstr "À propos de cette instance" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administration" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Code source" msgid "Matrix room" msgstr "Salon Matrix" -msgid "Administration" -msgstr "Administration" - msgid "Welcome to {}" msgstr "Bienvenue sur {0}" @@ -365,6 +371,9 @@ msgstr "Sauvegarder ces paramètres" msgid "About {0}" msgstr "À propos de {0}" +msgid "Runs Plume {0}" +msgstr "Propulsé par Plume {0}" + msgid "Home to {0} people" msgstr "Refuge de {0} personnes" @@ -377,8 +386,22 @@ msgstr "Et sont connecté⋅es à {0} autres instances" msgid "Administred by" msgstr "Administré par" -msgid "Runs Plume {0}" -msgstr "Propulsé par Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -620,8 +643,7 @@ msgstr "Domaine d'une instance" msgid "Posted by one of these authors" msgstr "Écrit par un de ces auteur⋅ices" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Auteurs" # src/template_utils.rs:305 @@ -645,16 +667,13 @@ msgstr "Placé sous cette licence" msgid "Article license" msgstr "Licence de l'article" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Résultats de la recherche pour \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Résultats de la recherche" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Aucun résultat pour votre recherche" msgid "No more results for your query" @@ -761,12 +780,6 @@ msgstr "Publiez votre message" msgid "Written by {0}" msgstr "Écrit par {0}" -msgid "Edit" -msgstr "Modifier" - -msgid "Delete this article" -msgstr "Supprimer cet article" - msgid "All rights reserved." msgstr "Tous droits réservés." @@ -819,6 +832,18 @@ msgstr "Soumettre le commentaire" msgid "No comments yet. Be the first to react!" msgstr "Pas encore de commentaires. Soyez le premier à réagir !" +msgid "Delete" +msgstr "Supprimer" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Modifier" + msgid "Invalid CSRF token" msgstr "Jeton CSRF invalide" @@ -943,9 +968,6 @@ msgstr "Vous n'avez pas encore de média." msgid "Content warning: {0}" msgstr "Avertissement du contenu : {0}" -msgid "Delete" -msgstr "Supprimer" - msgid "Details" msgstr "Détails" @@ -980,3 +1002,6 @@ msgstr "Copiez-le dans vos articles, à insérer ce média :" msgid "Use as an avatar" msgstr "Utiliser comme avatar" + +#~ msgid "Delete this article" +#~ msgstr "Supprimer cet article" diff --git a/po/plume/gl.po b/po/plume/gl.po index 417613fb..72675db4 100644 --- a/po/plume/gl.po +++ b/po/plume/gl.po @@ -280,15 +280,21 @@ msgstr "Rexistrar" msgid "About this instance" msgstr "Sobre esta instancia" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administración" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Código fonte" msgid "Matrix room" msgstr "Sala Matrix" -msgid "Administration" -msgstr "Administración" - msgid "Welcome to {}" msgstr "Benvida a {}" @@ -365,6 +371,9 @@ msgstr "Gardar estas preferencias" msgid "About {0}" msgstr "Acerca de {0}" +msgid "Runs Plume {0}" +msgstr "Versión Plume {0}" + msgid "Home to {0} people" msgstr "Lar de {0} persoas" @@ -377,8 +386,22 @@ msgstr "E están conectadas a outras {0} instancias" msgid "Administred by" msgstr "Administrada por" -msgid "Runs Plume {0}" -msgstr "Versión Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -615,8 +638,7 @@ msgstr "Dominio da instancia" msgid "Posted by one of these authors" msgstr "Publicado por unha de estas autoras" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autoras" # src/template_utils.rs:305 @@ -640,16 +662,13 @@ msgstr "Publicado baixo esta licenza" msgid "Article license" msgstr "Licenza do artigo" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Resultado da busca por \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Resultado da busca" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Sen resultados para a busca" msgid "No more results for your query" @@ -756,12 +775,6 @@ msgstr "Publicar o artigo" msgid "Written by {0}" msgstr "Escrito por {0}" -msgid "Edit" -msgstr "Editar" - -msgid "Delete this article" -msgstr "Eliminar este artigo" - msgid "All rights reserved." msgstr "Todos os dereitos reservados." @@ -811,6 +824,18 @@ msgstr "Enviar comentario" msgid "No comments yet. Be the first to react!" msgstr "Sen comentarios. Sexa a primeira persoa en facelo!" +msgid "Delete" +msgstr "Eliminar" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Editar" + msgid "Invalid CSRF token" msgstr "Testemuño CSRF non válido" @@ -932,9 +957,6 @@ msgstr "Aínda non subeu ficheiros de medios." msgid "Content warning: {0}" msgstr "Aviso de contido: {0}" -msgid "Delete" -msgstr "Eliminar" - msgid "Details" msgstr "Detalles" @@ -968,3 +990,6 @@ msgstr "Copie e pegue este código para incrustar no artigo:" msgid "Use as an avatar" msgstr "Utilizar como avatar" + +#~ msgid "Delete this article" +#~ msgstr "Eliminar este artigo" diff --git a/po/plume/hi.po b/po/plume/hi.po index 1912614b..fa830f25 100644 --- a/po/plume/hi.po +++ b/po/plume/hi.po @@ -282,15 +282,21 @@ msgstr "अकाउंट रजिस्टर करें" msgid "About this instance" msgstr "इंस्टैंस के बारे में जानकारी" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "संचालन" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "सोर्स कोड" msgid "Matrix room" msgstr "मैट्रिक्स रूम" -msgid "Administration" -msgstr "संचालन" - msgid "Welcome to {}" msgstr "{} में स्वागत" @@ -366,6 +372,9 @@ msgstr "इन सेटिंग्स को सेव करें" msgid "About {0}" msgstr "{0} के बारे में" +msgid "Runs Plume {0}" +msgstr "Plume {0} का इस्तेमाल कर रहे हैं" + msgid "Home to {0} people" msgstr "यहाँ {0} यूज़र्स हैं" @@ -378,8 +387,22 @@ msgstr "और {0} इन्सटेंसेस से जुड़े msgid "Administred by" msgstr "द्वारा संचालित" -msgid "Runs Plume {0}" -msgstr "Plume {0} का इस्तेमाल कर रहे हैं" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" msgid "Follow {}" msgstr "" @@ -606,8 +629,7 @@ msgstr "इंस्टैंस डोमेन" msgid "Posted by one of these authors" msgstr "इन लेखकों द्वारा पोस्ट किये गए आर्टिकल्स" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "लेखक" # src/template_utils.rs:305 @@ -631,16 +653,13 @@ msgstr "इस लिसेंसे के साथ पब्लिश कि msgid "Article license" msgstr "आर्टिकल लाइसेंस" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "{0} के लिए सर्च रिजल्ट" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "सर्च रिजल्ट" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "आपकी जांच के लिए रिजल्ट" msgid "No more results for your query" @@ -742,12 +761,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -797,6 +810,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -913,9 +938,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/hr.po b/po/plume/hr.po index a110cedc..ef6e835c 100644 --- a/po/plume/hr.po +++ b/po/plume/hr.po @@ -280,15 +280,21 @@ msgstr "Registrirajte se" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administracija" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Izvorni kod" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "Administracija" - msgid "Welcome to {}" msgstr "Dobrodošli u {0}" @@ -364,6 +370,9 @@ msgstr "" msgid "About {0}" msgstr "O {0}" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -376,7 +385,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -604,7 +627,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -628,13 +651,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -736,12 +759,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -793,6 +810,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -909,9 +938,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/it.po b/po/plume/it.po index 41a66d35..abbbff5a 100644 --- a/po/plume/it.po +++ b/po/plume/it.po @@ -280,15 +280,21 @@ msgstr "Registrati" msgid "About this instance" msgstr "A proposito di questa istanza" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Amministrazione" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Codice sorgente" msgid "Matrix room" msgstr "Stanza Matrix" -msgid "Administration" -msgstr "Amministrazione" - msgid "Welcome to {}" msgstr "Benvenuto su {}" @@ -364,6 +370,9 @@ msgstr "Salva queste impostazioni" msgid "About {0}" msgstr "A proposito di {0}" +msgid "Runs Plume {0}" +msgstr "Utilizza Plume {0}" + msgid "Home to {0} people" msgstr "Casa di {0} persone" @@ -376,8 +385,22 @@ msgstr "E sono connessi ad altre {0} istanze" msgid "Administred by" msgstr "Amministrata da" -msgid "Runs Plume {0}" -msgstr "Utilizza Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -617,8 +640,7 @@ msgstr "Dominio dell'istanza" msgid "Posted by one of these authors" msgstr "Pubblicato da uno di questi autori" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autori" # src/template_utils.rs:305 @@ -642,16 +664,13 @@ msgstr "Pubblicato sotto questa licenza" msgid "Article license" msgstr "Licenza dell'articolo" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Risultati della ricerca per \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Risultati della ricerca" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Nessun risultato per la tua ricerca" msgid "No more results for your query" @@ -758,12 +777,6 @@ msgstr "Pubblica il tuo post" msgid "Written by {0}" msgstr "Scritto da {0}" -msgid "Edit" -msgstr "Modifica" - -msgid "Delete this article" -msgstr "Elimina questo articolo" - msgid "All rights reserved." msgstr "Tutti i diritti riservati." @@ -816,6 +829,18 @@ msgstr "Invia commento" msgid "No comments yet. Be the first to react!" msgstr "Ancora nessun commento. Sii il primo ad aggiungere la tua reazione!" +msgid "Delete" +msgstr "Elimina" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Modifica" + msgid "Invalid CSRF token" msgstr "Token CSRF non valido" @@ -939,9 +964,6 @@ msgstr "Non hai ancora nessun media." msgid "Content warning: {0}" msgstr "Avviso di contenuto sensibile: {0}" -msgid "Delete" -msgstr "Elimina" - msgid "Details" msgstr "Dettagli" @@ -974,3 +996,6 @@ msgstr "Copialo nei tuoi articoli, per inserire questo media:" msgid "Use as an avatar" msgstr "Usa come immagine di profilo" + +#~ msgid "Delete this article" +#~ msgstr "Elimina questo articolo" diff --git a/po/plume/ja.po b/po/plume/ja.po index 47bc6e12..0f24e07f 100644 --- a/po/plume/ja.po +++ b/po/plume/ja.po @@ -281,15 +281,21 @@ msgstr "登録" msgid "About this instance" msgstr "このインスタンスについて" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "管理" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "ソースコード" msgid "Matrix room" msgstr "Matrix ルーム" -msgid "Administration" -msgstr "管理" - msgid "Welcome to {}" msgstr "{} へようこそ" @@ -367,6 +373,9 @@ msgstr "設定を保存" msgid "About {0}" msgstr "{0} について" +msgid "Runs Plume {0}" +msgstr "Plume {0} を実行中" + msgid "Home to {0} people" msgstr "ユーザー登録者数 {0} 人" @@ -379,8 +388,22 @@ msgstr "他のインスタンスからの接続数 {0}" msgid "Administred by" msgstr "管理者" -msgid "Runs Plume {0}" -msgstr "Plume {0} を実行中" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -615,8 +638,7 @@ msgstr "インスタンスのドメイン" msgid "Posted by one of these authors" msgstr "以下のいずれかの投稿者が投稿" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "投稿者" # src/template_utils.rs:305 @@ -640,16 +662,13 @@ msgstr "適用されているライセンス" msgid "Article license" msgstr "投稿のライセンス" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "\"{0}\" の検索結果" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "検索結果" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "検索結果はありません" msgid "No more results for your query" @@ -756,12 +775,6 @@ msgstr "投稿を公開" msgid "Written by {0}" msgstr "投稿者 {0}" -msgid "Edit" -msgstr "編集" - -msgid "Delete this article" -msgstr "この投稿を削除" - msgid "All rights reserved." msgstr "著作権は投稿者が保有しています。" @@ -809,6 +822,18 @@ msgstr "コメントを保存" msgid "No comments yet. Be the first to react!" msgstr "コメントがまだありません。最初のコメントを書きましょう!" +msgid "Delete" +msgstr "削除" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "編集" + msgid "Invalid CSRF token" msgstr "無効な CSRF トークンです" @@ -931,9 +956,6 @@ msgstr "メディアがまだありません。" msgid "Content warning: {0}" msgstr "コンテンツの警告: {0}" -msgid "Delete" -msgstr "削除" - msgid "Details" msgstr "詳細" @@ -966,3 +988,6 @@ msgstr "このメディアを挿入するには、これを投稿にコピーし msgid "Use as an avatar" msgstr "アバターとして使う" + +#~ msgid "Delete this article" +#~ msgstr "この投稿を削除" diff --git a/po/plume/nb.po b/po/plume/nb.po index 97879dd4..f785484b 100644 --- a/po/plume/nb.po +++ b/po/plume/nb.po @@ -274,15 +274,21 @@ msgstr "Registrér deg" msgid "About this instance" msgstr "Om denne instansen" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administrasjon" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Kildekode" msgid "Matrix room" msgstr "Snakkerom" -msgid "Administration" -msgstr "Administrasjon" - msgid "Welcome to {}" msgstr "" @@ -368,6 +374,9 @@ msgstr "Lagre innstillingene" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -381,7 +390,21 @@ msgstr "" msgid "Administred by" msgstr "Administrasjon" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" #, fuzzy @@ -642,7 +665,7 @@ msgstr "Instillinger for instansen" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # #-#-#-#-# nb.po (plume) #-#-#-#-# @@ -673,13 +696,13 @@ msgstr "Denne artikkelen er publisert med lisensen {0}" msgid "Article license" msgstr "Standardlisens" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -787,13 +810,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -#, fuzzy -msgid "Delete this article" -msgstr "Siste artikler" - msgid "All rights reserved." msgstr "" @@ -850,6 +866,18 @@ msgstr "Send kommentar" msgid "No comments yet. Be the first to react!" msgstr "Ingen kommentarer enda. Vær den første!" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + #, fuzzy msgid "Invalid CSRF token" msgstr "Ugyldig navn" @@ -978,9 +1006,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "Innhold" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" @@ -1015,6 +1040,10 @@ msgstr "" msgid "Use as an avatar" msgstr "" +#, fuzzy +#~ msgid "Delete this article" +#~ msgstr "Siste artikler" + #, fuzzy #~ msgid "Short description - byline" #~ msgstr "Kort beskrivelse" diff --git a/po/plume/pl.po b/po/plume/pl.po index c99328d2..6ba00ba0 100644 --- a/po/plume/pl.po +++ b/po/plume/pl.po @@ -282,15 +282,21 @@ msgstr "Zarejestruj się" msgid "About this instance" msgstr "O tej instancji" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administracja" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Kod źródłowy" msgid "Matrix room" msgstr "Pokój Matrix.org" -msgid "Administration" -msgstr "Administracja" - msgid "Welcome to {}" msgstr "Witamy na {}" @@ -366,6 +372,9 @@ msgstr "Zapisz te ustawienia" msgid "About {0}" msgstr "O {0}" +msgid "Runs Plume {0}" +msgstr "Działa na Plume {0}" + msgid "Home to {0} people" msgstr "Używana przez {0} użytkowników" @@ -378,8 +387,22 @@ msgstr "Sa połączone z {0} innymi instancjami" msgid "Administred by" msgstr "Administrowany przez" -msgid "Runs Plume {0}" -msgstr "Działa na Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" msgid "Follow {}" msgstr "Obserwuj {}" @@ -616,8 +639,7 @@ msgstr "Domena instancji" msgid "Posted by one of these authors" msgstr "Opublikowany przez jednego z tych autorów" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autorzy" # src/template_utils.rs:305 @@ -641,16 +663,13 @@ msgstr "Opublikowany na tej licencji" msgid "Article license" msgstr "Licencja artykułu" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Wyniki wyszukiwania dla „{0}”" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Wyniki wyszukiwania" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Brak wyników dla tego kryterium" msgid "No more results for your query" @@ -756,12 +775,6 @@ msgstr "Opublikuj wpis" msgid "Written by {0}" msgstr "Napisany przez {0}" -msgid "Edit" -msgstr "Edytuj" - -msgid "Delete this article" -msgstr "Usuń ten artykuł" - msgid "All rights reserved." msgstr "Wszelkie prawa zastrzeżone." @@ -817,6 +830,18 @@ msgstr "Wyślij komentarz" msgid "No comments yet. Be the first to react!" msgstr "Brak komentarzy. Bądź pierwszy(-a)!" +msgid "Delete" +msgstr "Usuń" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Edytuj" + msgid "Invalid CSRF token" msgstr "Nieprawidłowy token CSRF" @@ -940,9 +965,6 @@ msgstr "Nie masz żadnej zawartości multimedialnej." msgid "Content warning: {0}" msgstr "Ostrzeżenie o zawartości: {0}" -msgid "Delete" -msgstr "Usuń" - msgid "Details" msgstr "Bliższe szczegóły" @@ -977,3 +999,6 @@ msgstr "Skopiuj do swoich artykułów, aby wstawić tę zawartość multimedialn msgid "Use as an avatar" msgstr "Użyj jako awataru" + +#~ msgid "Delete this article" +#~ msgstr "Usuń ten artykuł" diff --git a/po/plume/plume.pot b/po/plume/plume.pot index 8e55c82e..7dc75ffa 100644 --- a/po/plume/plume.pot +++ b/po/plume/plume.pot @@ -266,15 +266,21 @@ msgstr "" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "" - msgid "Welcome to {}" msgstr "" @@ -350,6 +356,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -362,7 +371,13 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "As a registered user, you also have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "" + +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Follow {}" @@ -585,7 +600,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:339 @@ -609,13 +624,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -713,12 +728,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -764,6 +773,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -874,9 +895,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/pt.po b/po/plume/pt.po index ccf4ab47..9e0790c9 100644 --- a/po/plume/pt.po +++ b/po/plume/pt.po @@ -282,15 +282,21 @@ msgstr "Registrar" msgid "About this instance" msgstr "Sobre esta instância" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administração" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Código fonte" msgid "Matrix room" msgstr "Sala Matrix" -msgid "Administration" -msgstr "Administração" - msgid "Welcome to {}" msgstr "Bem-vindo a {}" @@ -366,6 +372,9 @@ msgstr "Salvar estas configurações" msgid "About {0}" msgstr "Sobre {0}" +msgid "Runs Plume {0}" +msgstr "Roda Plume {0}" + msgid "Home to {0} people" msgstr "Lar de {0} pessoas" @@ -378,8 +387,22 @@ msgstr "E esta conectados a {0} outras instâncias" msgid "Administred by" msgstr "Administrado por" -msgid "Runs Plume {0}" -msgstr "Roda Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -616,7 +639,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -640,15 +663,14 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -#, fuzzy -msgid "No results for your query" -msgstr "Ir para a sua galeria" +msgid "No result for your query" +msgstr "" msgid "No more results for your query" msgstr "" @@ -751,12 +773,6 @@ msgstr "" msgid "Written by {0}" msgstr "Escrito por {0}" -msgid "Edit" -msgstr "Mudar" - -msgid "Delete this article" -msgstr "Suprimir este artigo" - msgid "All rights reserved." msgstr "" @@ -806,6 +822,18 @@ msgstr "Submeter comentário" msgid "No comments yet. Be the first to react!" msgstr "Nenhum comentário ainda. Seja o primeiro a reagir!" +msgid "Delete" +msgstr "Suprimir" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Mudar" + msgid "Invalid CSRF token" msgstr "" @@ -926,9 +954,6 @@ msgstr "Você ainda não tem nenhuma mídia." msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "Suprimir" - msgid "Details" msgstr "" @@ -961,3 +986,6 @@ msgstr "" msgid "Use as an avatar" msgstr "" + +#~ msgid "Delete this article" +#~ msgstr "Suprimir este artigo" diff --git a/po/plume/ro.po b/po/plume/ro.po index c28ed2fa..ad31a6de 100644 --- a/po/plume/ro.po +++ b/po/plume/ro.po @@ -281,15 +281,21 @@ msgstr "Înregistrare" msgid "About this instance" msgstr "Despre această instanță" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administrație" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Cod sursă" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "Administrație" - msgid "Welcome to {}" msgstr "" @@ -365,6 +371,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -377,7 +386,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -605,8 +628,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autori" # src/template_utils.rs:305 @@ -630,13 +652,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -738,12 +760,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "Editare" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -795,6 +811,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Editare" + msgid "Invalid CSRF token" msgstr "" @@ -912,9 +940,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/ru.po b/po/plume/ru.po index 440126ba..d512b079 100644 --- a/po/plume/ru.po +++ b/po/plume/ru.po @@ -277,15 +277,21 @@ msgstr "Зарегистрироваться" msgid "About this instance" msgstr "Об этом узле" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Администрирование" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Исходный код" msgid "Matrix room" msgstr "Комната в Matrix" -msgid "Administration" -msgstr "Администрирование" - msgid "Welcome to {}" msgstr "" @@ -361,6 +367,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "Работает на Plume {0}" + msgid "Home to {0} people" msgstr "" @@ -373,8 +382,22 @@ msgstr "" msgid "Administred by" msgstr "Администрируется" -msgid "Runs Plume {0}" -msgstr "Работает на Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" #, fuzzy msgid "Follow {}" @@ -603,7 +626,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -627,15 +650,14 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -#, fuzzy -msgid "No results for your query" -msgstr "Перейти в вашу галерею" +msgid "No result for your query" +msgstr "" msgid "No more results for your query" msgstr "" @@ -737,12 +759,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "Редактировать" - -msgid "Delete this article" -msgstr "Удалить эту статью" - msgid "All rights reserved." msgstr "" @@ -796,6 +812,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "Удалить" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Редактировать" + msgid "Invalid CSRF token" msgstr "" @@ -920,9 +948,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "Удалить" - msgid "Details" msgstr "" @@ -955,3 +980,6 @@ msgstr "" msgid "Use as an avatar" msgstr "" + +#~ msgid "Delete this article" +#~ msgstr "Удалить эту статью" diff --git a/po/plume/sk.po b/po/plume/sk.po index 58e0fcd6..5b1931be 100644 --- a/po/plume/sk.po +++ b/po/plume/sk.po @@ -282,15 +282,21 @@ msgstr "Registrácia" msgid "About this instance" msgstr "O tejto instancii" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administrácia" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Zdrojový kód" msgid "Matrix room" msgstr "Matrix miestnosť" -msgid "Administration" -msgstr "Administrácia" - msgid "Welcome to {}" msgstr "Vitaj na {}" @@ -366,6 +372,9 @@ msgstr "Ulož tieto nastavenia" msgid "About {0}" msgstr "O {0}" +msgid "Runs Plume {0}" +msgstr "Beží na Plume {0}" + msgid "Home to {0} people" msgstr "Domov pre {0} ľudí" @@ -378,8 +387,22 @@ msgstr "A sú pripojení k {0} ďalším instanciám" msgid "Administred by" msgstr "Správcom je" -msgid "Runs Plume {0}" -msgstr "Beží na Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." +msgstr "" msgid "Follow {}" msgstr "Následuj {}" @@ -619,8 +642,7 @@ msgstr "Doména instancie" msgid "Posted by one of these authors" msgstr "Uverejnené jedným z týchto autorov" -#, fuzzy -msgid "Author(s)" +msgid "Authors" msgstr "Autori" # src/template_utils.rs:305 @@ -644,16 +666,13 @@ msgstr "Uverejnené pod touto licenciou" msgid "Article license" msgstr "Článok je pod licenciou" -#, fuzzy -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "Výsledok hľadania pre \"{0}\"" -#, fuzzy -msgid "Search result(s)" +msgid "Search result" msgstr "Výsledok hľadania" -#, fuzzy -msgid "No results for your query" +msgid "No result for your query" msgstr "Žiadny výsledok pre tvoje zadanie" msgid "No more results for your query" @@ -759,12 +778,6 @@ msgstr "Zverejni svoj príspevok" msgid "Written by {0}" msgstr "Napísal/a {0}" -msgid "Edit" -msgstr "Uprav" - -msgid "Delete this article" -msgstr "Vymaž tento článok" - msgid "All rights reserved." msgstr "Všetky práva vyhradné." @@ -821,6 +834,18 @@ msgstr "Pošli komentár" msgid "No comments yet. Be the first to react!" msgstr "Zatiaľ žiadne komentáre. Buď prvý kto zareaguje!" +msgid "Delete" +msgstr "Zmazať" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "Uprav" + msgid "Invalid CSRF token" msgstr "Neplatný CSRF token" @@ -945,9 +970,6 @@ msgstr "Ešte nemáš nahrané žiadne multimédiá." msgid "Content warning: {0}" msgstr "Upozornenie o obsahu: {0}" -msgid "Delete" -msgstr "Zmazať" - msgid "Details" msgstr "Podrobnosti" @@ -981,3 +1003,6 @@ msgstr "Kód skopíruj do tvojho článku, pre vloženie tohto mediálneho súbo msgid "Use as an avatar" msgstr "Použi ako avatar" + +#~ msgid "Delete this article" +#~ msgstr "Vymaž tento článok" diff --git a/po/plume/sr.po b/po/plume/sr.po index aa2fb519..95bba0e0 100644 --- a/po/plume/sr.po +++ b/po/plume/sr.po @@ -276,15 +276,21 @@ msgstr "Registracija" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "Administracija" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "Izvorni kod" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "Administracija" - msgid "Welcome to {}" msgstr "Dobrodošli u {0}" @@ -360,6 +366,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -372,7 +381,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -600,7 +623,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -624,13 +647,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -732,12 +755,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -789,6 +806,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -905,9 +934,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/po/plume/sv.po b/po/plume/sv.po index 5b064651..c6a83bad 100644 --- a/po/plume/sv.po +++ b/po/plume/sv.po @@ -279,15 +279,21 @@ msgstr "" msgid "About this instance" msgstr "" +msgid "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "" + +msgid "Documentation" +msgstr "" + msgid "Source code" msgstr "" msgid "Matrix room" msgstr "" -msgid "Administration" -msgstr "" - msgid "Welcome to {}" msgstr "" @@ -363,6 +369,9 @@ msgstr "" msgid "About {0}" msgstr "" +msgid "Runs Plume {0}" +msgstr "" + msgid "Home to {0} people" msgstr "" @@ -375,7 +384,21 @@ msgstr "" msgid "Administred by" msgstr "" -msgid "Runs Plume {0}" +msgid "" +"If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "" +"As a registered user, you also have to provide your username (which does not " +"have to be your real name), your functional email address and a password, in " +"order to be able to log in, write articles and comment. The content you " +"submit is stored until you delete it." +msgstr "" + +msgid "" +"When you log in, we store two cookies, one to keep your session open, the " +"second to prevent other people to act on your behalf. We don't store any " +"other cookies." msgstr "" msgid "Follow {}" @@ -603,7 +626,7 @@ msgstr "" msgid "Posted by one of these authors" msgstr "" -msgid "Author(s)" +msgid "Authors" msgstr "" # src/template_utils.rs:305 @@ -627,13 +650,13 @@ msgstr "" msgid "Article license" msgstr "" -msgid "Search result(s) for \"{0}\"" +msgid "Search result for \"{0}\"" msgstr "" -msgid "Search result(s)" +msgid "Search result" msgstr "" -msgid "No results for your query" +msgid "No result for your query" msgstr "" msgid "No more results for your query" @@ -735,12 +758,6 @@ msgstr "" msgid "Written by {0}" msgstr "" -msgid "Edit" -msgstr "" - -msgid "Delete this article" -msgstr "" - msgid "All rights reserved." msgstr "" @@ -790,6 +807,18 @@ msgstr "" msgid "No comments yet. Be the first to react!" msgstr "" +msgid "Delete" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + msgid "Invalid CSRF token" msgstr "" @@ -905,9 +934,6 @@ msgstr "" msgid "Content warning: {0}" msgstr "" -msgid "Delete" -msgstr "" - msgid "Details" msgstr "" diff --git a/src/main.rs b/src/main.rs index d609ff14..cad19246 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,6 +185,7 @@ Then try to restart Plume routes::instance::interact, routes::instance::nodeinfo, routes::instance::about, + routes::instance::privacy, routes::instance::web_manifest, routes::likes::create, routes::likes::create_auth, diff --git a/src/routes/instance.rs b/src/routes/instance.rs index 98757c6f..39d1b0e2 100644 --- a/src/routes/instance.rs +++ b/src/routes/instance.rs @@ -313,6 +313,11 @@ pub fn about(rockets: PlumeRocket) -> Result { ))) } +#[get("/privacy")] +pub fn privacy(rockets: PlumeRocket) -> Ructe { + render!(instance::privacy(&rockets.to_context())) +} + #[get("/manifest.json")] pub fn web_manifest() -> Result, ErrorPage> { let instance = Instance::get_local()?; diff --git a/static/css/_article.scss b/static/css/_article.scss index a8d33e42..4823f5c9 100644 --- a/static/css/_article.scss +++ b/static/css/_article.scss @@ -1,6 +1,69 @@ // Heading +main header.article { + overflow: hidden; + background: $white; + color: $black; + display: grid; + background-size: cover; + background-position: center; + + &.illustrated { + min-height: 75vh; + color: $white; + + a, a:visited { + color: $white; + border-bottom: 1px solid transparent; + transition: border-bottom-color 0.1s ease-in; + + &:hover { + border-bottom-color: $white; + } + } + } + + & > * { + grid-row: 1; + grid-column: 1; + } + + & > div:not(.shadow) { + z-index: 3; + font-family: $lora; + font-size: 1.2em; + + bottom: 0; + left: 0; + right: 0; + max-width: $article-width; + margin: 2em auto; + + display: flex; + flex-direction: column; + justify-content: end; + + h1, .article-info { + text-align: center; + } + } + + & > div.shadow { + z-index: 2; + + height: 100%; + width: 100%; + background: linear-gradient(180deg, transparent 20vh, black 80vh); + } + + & > img { + z-index: 1; + min-width: 100%; + min-height: 100%; + background: $purple; + } +} + main .article-info { - max-width: 40rem; margin: 0 auto 3em; font-size: 0.95em; font-weight: 400; @@ -12,7 +75,7 @@ main .article-info { // The article itself main article { - max-width: 40rem; + max-width: $article-width; margin: 2.5em auto; font-family: $lora; font-size: 1.2em; @@ -30,9 +93,14 @@ main article { pre { padding: 1em; - background: $lightgray; + background: $gray; overflow: auto; - border-radius: 5px; + } + + blockquote { + border-left: 5px solid $gray; + margin: 1em auto; + padding: 0em 2em; } } @@ -46,37 +114,42 @@ main .article-meta, main .article-meta button { main .article-meta { > * { - margin: 0 20%; + margin: $margin; + } + + > .banner { + margin: 3em 0; + & > * { + margin: $margin; + } } > p { - margin: 2em 20%; + margin: 2em $horizontal-margin; font-size: 0.9em; } // Article Tags .tags { list-style: none; - display: inline-block; padding: 0px; - margin-bottom: 2em; + max-width: none; + flex: 20; li { display: inline-block; - background: $lightgray; padding: 0px; margin: 0px 10px 10px 0px; - border-radius: 3px; transition: all 0.2s ease-in; + border: 1px solid $purple; a { display: inline-block; padding: 10px 20px; - color: $black; } &:hover { - background: mix($black, $lightgray, 10%); + background: transparentize($purple, 0.9); } } } @@ -111,6 +184,7 @@ main .article-meta { color: $black; border: none; font-size: 1.1em; + cursor: pointer; svg.feather { transition: background 0.1s ease-in; @@ -185,11 +259,7 @@ main .article-meta { // Comments .comments { - margin: 0; - > * { - margin-left: 20%; - margin-right: 20%; - } + margin: 0 $horizontal-margin; h2 { color: $purple; @@ -208,13 +278,12 @@ main .article-meta { // Respond & delete comment buttons a.button, form.inline, form.inline input { - display: inline-block; padding: 0; background: none; color: $black; - border: none; margin-right: 2em; font-family: $route159; + font-weight: normal; &::before { color: $purple; @@ -224,18 +293,40 @@ main .article-meta { &:hover { color: $purple; } } - .list { - display: grid; - margin: 0 0 -5em; - padding: 0 20%; - background: $lightgray; - } - .comment { - padding: 2em; + margin: 1em 0; font-size: 1em; border: none; + .content { + background: $gray; + margin-top: 2.5em; + padding: 1em; + + &::before { + display: block; + content: ' '; + border: 1em solid $gray; + border-top-color: transparent; + border-right-color: transparent; + position: relative; + top: -2.4em; + left: -1em; + width: 0; + height: 0; + } + } + + header { + display: flex; + flex-direction: row; + justify-content: space-between; + } + + .dt-published a { + color: transparentize($black, 0.6); + } + .author { display: flex; flex-direction: row; @@ -256,6 +347,10 @@ main .article-meta { } } + & > .comment { + padding-left: 2em; + } + .text { padding: 1.25em 0; font-family: $lora; @@ -303,7 +398,7 @@ main .article-meta { bottom: 20vh; left: 20vw; right: 20vw; - background: $lightgray; + background: $gray; border: 1px solid $purple; z-index: 2; padding: 2em; @@ -329,6 +424,11 @@ main .article-meta { .cw-container { position: relative; display: inline-block; + cursor: pointer; + + img { + margin: auto; + } } .cw-text { @@ -357,3 +457,26 @@ input:checked ~ .cw-container > .cw-text { top: 50%; transform: translateY(-50%); } + +// Bottom action bar + +.bottom-bar { + z-index: 10; + position: fixed; + bottom: 0; + left: 0; + right: 0; + background: $gray; + margin: 0; + display: flex; + + & > div { + margin: 1em; + } + + & > div:nth-child(2) { + flex: 1; + display: flex; + margin: auto $horizontal-margin; + } +} diff --git a/static/css/_forms.scss b/static/css/_forms.scss index b785db41..f095daee 100644 --- a/static/css/_forms.scss +++ b/static/css/_forms.scss @@ -14,8 +14,7 @@ input, textarea, select { background: $form-input-background; color: $black; - border: none; - border: solid $lightgray thin; + border: solid $black thin; font-size: 1.2em; font-weight: 400; @@ -55,7 +54,6 @@ form.inline { input[type="submit"] { display: inline-block; - color: $purple; cursor: pointer; font-size: 1em; width: auto; @@ -67,39 +65,46 @@ form.inline { border: none; background: transparent; color: $purple; + font-weight: normal; } } } -.button, input[type="submit"], button { +.button, .button:visited, input[type="submit"], input[type="submit"].button { transition: all 0.1s ease-in; display: inline-block; -webkit-appearance: none; - border-radius: 0.5em; margin: 0.5em auto; padding: 0.75em 1em; - background: transparent; - color: $purple; - border: 1px solid $purple; + background: $purple; + color: $white; + font-weight: bold; + border: none; cursor: pointer; &:hover { - background: transparentize($purple, 0.6); - color: white; + background: transparentize($purple, 0.1); } &.destructive { - color: $red; - border-color: $red; + background: $red; &:hover { - background: transparentize($red, 0.6); - color: $white; + background: transparentize($red, 0.1); } } + + &.secondary { + background: $gray; + color: $black; + + &:hover { + background: transparentize($black, 0.9); + } + } } input[type="submit"] { display: block; @@ -126,18 +131,6 @@ form.new-post { resize: none; -webkit-appearance: textarea; } - input[type="submit"] { - background: $lightgray; - color: $black; - border: none; - -webkit-appearance: none; - - font-family: $playfair; - font-size: 1.5em; - } - input[type="submit"]:hover { - background: $lightgray;} - -webkit-appearance: none; } .button + .button { @@ -147,6 +140,7 @@ form.new-post { .split { display: flex; justify-content: space-between; + flex-wrap: wrap; & > * { flex-grow: 1; diff --git a/static/css/_global.scss b/static/css/_global.scss index e684ddd4..8bc5a426 100644 --- a/static/css/_global.scss +++ b/static/css/_global.scss @@ -4,11 +4,12 @@ html, body { background: $background; color: $black; font-family: $route159; - ::selection { - background: $lightpurple; - } + + ::selection { + background: transparentize($purple, 0.7); + } ::-moz-selection { - background: $lightpurple; + background: transparentize($purple, 0.7); } } @@ -16,7 +17,7 @@ a, a:visited { color: $purple; text-decoration: none; } -a::selection { +a::selection { color: $white; } a::-moz-selection { @@ -37,12 +38,15 @@ small { padding: 5em; } -.spaced { - margin: 4rem 0; +.right { + text-align: right; + display: flex; + justify-content: end; + align-items: center; } -.cards.spaced { - margin: 1rem 0 5rem; +.spaced { + margin: 4rem 0; } .banner { @@ -59,21 +63,26 @@ small { /// Main body > main > *, .h-feed > * { - margin: 0 20%; + margin: 1em $horizontal-margin; } body > main > .h-entry, .h-feed { margin: 0; } +body > main { + min-height: 70vh; +} + main { + h1, h2, h3, h4, h5, h6 { font-family: $route159; line-height: 1.15; font-weight: 300; &.article { - max-width: 40rem; + max-width: $article-width; } } h1 { @@ -94,7 +103,6 @@ main { font-weight: 300; &.article { - margin: auto; font-size: 1.25em; margin-bottom: 0.5em; } @@ -110,7 +118,7 @@ main { margin-bottom: 0.5em; } } - + .cover { padding: 0px; margin: 0px; @@ -126,8 +134,6 @@ main { p.error { color: $red; font-weight: bold; - max-width: 40rem; - margin: 1em auto; } /// User page @@ -149,7 +155,6 @@ p.error { background: $white; color: $purple; border: 1px solid $purple; - border-radius: 1em; font-size: 1rem; } @@ -164,6 +169,7 @@ p.error { flex-direction: row; flex-wrap: wrap; padding: 0 5%; + margin: 1rem 0 5rem; } .card { flex: 1; @@ -213,24 +219,44 @@ p.error { overflow: hidden; } } -.list .card { - /* TODO */ - background: 0; - margin: 2em 0; - padding: 0; - min-height: 0; + +.list > .card { + background: transparent; + margin: 2em 0; + min-height: 3em; + + padding: 1em; + transition: background 0.1s ease-in; + + &:hover { + background-color: $gray; + } + + &.compact { + margin: 0; + padding: 0 1em; + } + + h3 { + margin: 0; + } } /// Instance presentation -.presentation > h2, .presentation > a { - text-align: center; -} -.presentation > a { - font-size: 1.2em; - margin: 1em; +.presentation { + max-width: none; + + & > h2, & > a { + text-align: center; + } + + & > a { + font-size: 1.2em; + margin: 1em; + } } -// Stats +// Stats .stats { display: flex; justify-content: space-around; @@ -282,13 +308,14 @@ p.error { .grow { flex: 1; + margin: 0 1em; } } .left-icon { align-self: center; padding: 1em; - background: $lightgray; + background: $gray; border-radius: 50px; margin: 1em; margin-right: 2em; @@ -298,13 +325,37 @@ p.error { body > footer { display: flex; align-content: center; - justify-content: space-between; - background: $lightgray; - padding: 0 20%; + justify-content: space-around; + background: $purple; + color: $white; margin-top: 5em; * { - margin: 5em 0; + margin: 0; + } + + hr { + transform: skew(-15deg); + background: $white; + border: none; + width: .2em; + } + + a, a:visited { + color: $white; + } + + div { + display: flex; + flex-direction: column; + flex-basis: 20%; + margin: 2em 0; + transition: all 0.1s ease-in; + + & > * { + display: block; + margin: 1em 0; + } } } @@ -386,9 +437,9 @@ figure { /// Tabs .tabs { - border-bottom: 1px solid $lightgray; + border-bottom: 1px solid $gray; padding: 0px; - margin: auto 20% 2em; + margin: auto $horizontal-margin 2em; overflow: auto; display: flex; diff --git a/static/css/_header.scss b/static/css/_header.scss index 76560474..96497526 100644 --- a/static/css/_header.scss +++ b/static/css/_header.scss @@ -1,5 +1,5 @@ -header { - background: $lightgray; +body > header { + background: $gray; #content { display: flex; @@ -27,7 +27,7 @@ header { height: 1.4em; margin: 0; padding: 0; - color: $lightgray; + color: $gray; font-size: 1.33em; } } diff --git a/static/css/_variables.scss b/static/css/_variables.scss index a76e0e33..22098f2c 100644 --- a/static/css/_variables.scss +++ b/static/css/_variables.scss @@ -1,16 +1,22 @@ // Color Scheme -$background: #F4F4F4; -$form-input-background: #FFFFFF; -$gray: #E3E3E3; -$lightgray: #ECECEC; +$gray: #F3F3F3; $black: #242424; -$white: #F4F4F4; +$white: #F8F8F8; $purple: #7765E3; $lightpurple: #c2bbee; $red: #E92F2F; $yellow: #ffe347; $green: #23f0c7; +$background: $white; +$form-input-background: white; + +// Dimensions + +$article-width: 70ch; +$horizontal-margin: 20%; +$margin: 0 $horizontal-margin; + // Fonts $route159: "Route159", serif; diff --git a/static/css/main.scss b/static/css/main.scss index 280aa38c..1615854f 100644 --- a/static/css/main.scss +++ b/static/css/main.scss @@ -32,21 +32,23 @@ html { } } - header { + body > header { flex-direction: column; nav#menu { display: inline-flex; + z-index: 21; } #content { display: none; appearance: none; text-align: center; + z-index: 20; } } - header:focus-within #content, #content.show { + body > header:focus-within #content, #content.show { position: fixed; display: flex; flex-direction: column; @@ -104,11 +106,8 @@ html { } } - body > main > * { - padding: 0 5%; - } main .article-meta { - > * { + > *, .comments { margin: 0 5%; } > p { @@ -136,11 +135,41 @@ html { flex-direction: column; align-items: center; } - body > footer * { margin: 1em auto; } + body > footer * { + margin: 1em auto; + text-align: center; + } .flex.wrap { flex-direction: column; } - .cards { + .cards, .list { margin: 1rem 0 5rem; } + + .split { + flex-direction: column; + margin: 0; + + & > * { + max-width: 100%; + } + } + + .bottom-bar { + flex-direction: column; + align-items: center; + & > div { + margin: 0; + } + } + + main .article-meta .comments .comment { + header { + flex-direction: column; + } + + .content { + margin-top: 0.5em; + } + } } diff --git a/templates/base.rs.html b/templates/base.rs.html index 9fe94886..d184b574 100644 --- a/templates/base.rs.html +++ b/templates/base.rs.html @@ -1,4 +1,5 @@ @use plume_models::CONFIG; +@use plume_models::instance::Instance; @use template_utils::*; @use routes::*; @(ctx: BaseContext, title: String, head: Content, header: Content, content: Content) @@ -78,13 +79,21 @@ @:content() diff --git a/templates/blogs/details.rs.html b/templates/blogs/details.rs.html index 6dbf7a5c..1f82fe88 100644 --- a/templates/blogs/details.rs.html +++ b/templates/blogs/details.rs.html @@ -55,7 +55,7 @@ @i18n!(ctx.1, "Edit") } - +

@i18n!(ctx.1, "There's one author on this blog: ", "There are {0} authors on this blog: "; authors.len()) @@ -74,7 +74,7 @@ @if posts.is_empty() {

@i18n!(ctx.1, "No posts to see here yet.")

} -
+
@for article in posts { @:post_card(ctx, article) } diff --git a/templates/instance/about.rs.html b/templates/instance/about.rs.html index 8009e423..16dade2a 100644 --- a/templates/instance/about.rs.html +++ b/templates/instance/about.rs.html @@ -9,6 +9,8 @@

@i18n!(ctx.1, "About {0}"; instance.name)

@Html(instance.short_description_html) + +

@i18n!(ctx.1, "Runs Plume {0}"; env!("CARGO_PKG_VERSION"))

-

@i18n!(ctx.1, "Runs Plume {0}"; env!("CARGO_PKG_VERSION"))

@Html(instance.long_description_html) diff --git a/templates/instance/federated.rs.html b/templates/instance/federated.rs.html index 5bc5c5e5..7c1510b2 100644 --- a/templates/instance/federated.rs.html +++ b/templates/instance/federated.rs.html @@ -24,7 +24,7 @@ ]) } -
+
@for article in articles { @:post_card(ctx, article) } diff --git a/templates/instance/feed.rs.html b/templates/instance/feed.rs.html index bdeea7d6..aabec6f8 100644 --- a/templates/instance/feed.rs.html +++ b/templates/instance/feed.rs.html @@ -16,7 +16,7 @@ ]) @if !articles.is_empty() { -
+
@for article in articles { @:post_card(ctx, article) } diff --git a/templates/instance/list.rs.html b/templates/instance/list.rs.html index 6e05b53d..4cc1f5ad 100644 --- a/templates/instance/list.rs.html +++ b/templates/instance/list.rs.html @@ -16,7 +16,7 @@
@for instance in instances { -
+

@instance.name @instance.public_domain diff --git a/templates/instance/local.rs.html b/templates/instance/local.rs.html index 1adea965..919181f4 100644 --- a/templates/instance/local.rs.html +++ b/templates/instance/local.rs.html @@ -25,7 +25,7 @@ ]) } -

+
@for article in articles { @:post_card(ctx, article) } diff --git a/templates/instance/privacy.rs.html b/templates/instance/privacy.rs.html new file mode 100644 index 00000000..3d261751 --- /dev/null +++ b/templates/instance/privacy.rs.html @@ -0,0 +1,13 @@ +@use templates::base; +@use template_utils::*; + +@(ctx: BaseContext) + +@:base(ctx, i18n!(ctx.1, "Privacy policy"), {}, {}, { +

@i18n!(ctx.1, "Privacy policy")

+
+

@i18n!(ctx.1, "If you are browsing this site as a visitor, no data about you is collected.")

+

@i18n!(ctx.1, "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it.")

+

@i18n!(ctx.1, "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies.")

+
+}) diff --git a/templates/instance/users.rs.html b/templates/instance/users.rs.html index 6f3208aa..9ddc1ba6 100644 --- a/templates/instance/users.rs.html +++ b/templates/instance/users.rs.html @@ -16,7 +16,7 @@
@for user in users { -
+
@avatar(ctx.0, &user, Size::Small, false, ctx.1)

@user.name() diff --git a/templates/medias/details.rs.html b/templates/medias/details.rs.html index fe6d3ed3..08f14d82 100644 --- a/templates/medias/details.rs.html +++ b/templates/medias/details.rs.html @@ -24,15 +24,17 @@

@media.markdown().unwrap_or_else(|_| SafeString::new(""))
-
- @if media.category() == MediaCategory::Image { -
- -
- } -
- +
+ +
+ @if media.category() == MediaCategory::Image { + + -
+ } + +
+ +
}) diff --git a/templates/medias/index.rs.html b/templates/medias/index.rs.html index 9764e759..6f5ba17a 100644 --- a/templates/medias/index.rs.html +++ b/templates/medias/index.rs.html @@ -15,7 +15,7 @@

@i18n!(ctx.1, "You don't have any media yet.")

} -
+
@for media in medias {
- - @avatar(ctx.0, &author, Size::Small, true, ctx.1) - @author.name() - @author.fqn - - @if let Some(ref ap_url) = comm.ap_url { - - } - @if let Some(ref in_reply_to) = in_reply_to { - - } -
- @if comm.sensitive { -
- @comm.spoiler_text +
+
+ + @avatar(ctx.0, &author, Size::Small, true, ctx.1) + @author.name() + @author.fqn + +

+ @if let Some(ref ap_url) = comm.ap_url { + @comm.creation_date.format("%B %e, %Y %H:%M") + } +

+ + @if let Some(ref in_reply_to) = in_reply_to { + + } +
+
+ @if comm.sensitive { +
+ @comm.spoiler_text + } + @Html(&comm.content) + @if comm.sensitive { +
+ } +
+ @i18n!(ctx.1, "Respond") + @if ctx.2.clone().map(|u| u.id == author.id).unwrap_or(false) { +
+ +
} - @Html(&comm.content) - @if comm.sensitive { -
- } -
- @i18n!(ctx.1, "Respond") - @if ctx.2.clone().map(|u| u.id == author.id).unwrap_or(false) { -
- -
- } +
@for res in &comment_tree.responses { @:comment(ctx, res, comm.ap_url.as_ref().map(|u| &**u), blog, slug) } diff --git a/templates/partials/home_feed.rs.html b/templates/partials/home_feed.rs.html index f3a4f204..f371e229 100644 --- a/templates/partials/home_feed.rs.html +++ b/templates/partials/home_feed.rs.html @@ -7,7 +7,7 @@ @if !articles.is_empty() {

@title@i18n!(ctx.1, "View all")

-
+
@for article in articles { @:post_card(ctx, article) } diff --git a/templates/partials/instance_description.rs.html b/templates/partials/instance_description.rs.html index e6ff2bf9..c62e8321 100644 --- a/templates/partials/instance_description.rs.html +++ b/templates/partials/instance_description.rs.html @@ -4,31 +4,29 @@ @(ctx: BaseContext, instance: Instance, n_users: i64, n_articles: i64) -
-
-
-

@i18n!(ctx.1, "What is Plume?")

-
-

@i18n!(ctx.1, "Plume is a decentralized blogging engine.")

-

@i18n!(ctx.1, "Authors can manage multiple blogs, each as its own website.")

-

@i18n!(ctx.1, "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon.")

-
- @i18n!(ctx.1, "Create your account") -
-
-

@i18n!(ctx.1, "About {0}"; instance.name)

-
- @Html(instance.short_description_html) -
-
-

@Html(i18n!(ctx.1, "Home to {0} people"; n_users))

-
-
-

@Html(i18n!(ctx.1, "Who wrote {0} articles"; n_articles))

-
-
-
- @i18n!(ctx.1, "Read the detailed rules") -
+
+
+

@i18n!(ctx.1, "What is Plume?")

+
+

@i18n!(ctx.1, "Plume is a decentralized blogging engine.")

+

@i18n!(ctx.1, "Authors can manage multiple blogs, each as its own website.")

+

@i18n!(ctx.1, "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon.")

+
+ @i18n!(ctx.1, "Create your account") +
+
+

@i18n!(ctx.1, "About {0}"; instance.name)

+
+ @Html(instance.short_description_html) +
+
+

@Html(i18n!(ctx.1, "Home to {0} people"; n_users))

+
+
+

@Html(i18n!(ctx.1, "Who wrote {0} articles"; n_articles))

+
+
+
+ @i18n!(ctx.1, "Read the detailed rules")
diff --git a/templates/posts/details.rs.html b/templates/posts/details.rs.html index 81536db5..c0c8fb59 100644 --- a/templates/posts/details.rs.html +++ b/templates/posts/details.rs.html @@ -23,69 +23,53 @@ @blog.title }, {
-

@article.title

-

@article.subtitle

- - @if article.cover_id.is_some() { -
- - } + +
@Html(&article.content)
@if ctx.2.is_some() { -
+
@@ -108,18 +92,19 @@ } -
+ } else { -

@Html(i18n!(ctx.1, "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article"; - format!("", uri!(session::new: m = _)), "", - format!("", uri!(posts::remote_interact: blog_name = &blog.fqn, slug = &article.slug)), "" - ))

-
+

@Html(i18n!(ctx.1, "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article"; + format!("", uri!(session::new: m = _)), "", + format!("", uri!(posts::remote_interact: blog_name = &blog.fqn, slug = &article.slug)), "" + )) +

+
-
+ } -
+ +

@i18n!(ctx.1, "Comments")

@if ctx.2.is_some() { @@ -147,15 +149,35 @@ } @if !comments.is_empty() { -
- @for comm in comments { - @:comment(ctx, &comm, Some(&article.ap_url), &blog.fqn, &article.slug) - } -
+ @for comm in comments { + @:comment(ctx, &comm, Some(&article.ap_url), &blog.fqn, &article.slug) + } } else {

@i18n!(ctx.1, "No comments yet. Be the first to react!")

} -
+
+@if ctx.2.clone().and_then(|u| article.is_author(ctx.0, u.id).ok()).unwrap_or(false) { + +} })