From 69c9cf7a10b7a661fc7f1cb9c8c5353f8898bbde Mon Sep 17 00:00:00 2001 From: Hendrik Sollich Date: Sun, 5 Jan 2020 13:41:14 +0100 Subject: [PATCH] fix: open file paths, not just folders fix: ignore dotfiles in storage --- CHANGELOG.md | 19 + Cargo.lock | 428 +++++++------- Cargo.toml | 3 +- README.md | 18 +- lang/de.po | 372 ++++++------ lang/de.po~ | 1353 ++++++++++++++++++++++++++++++++++++++++++++ src/storage/mod.rs | 27 +- src/util/mod.rs | 3 +- 8 files changed, 1816 insertions(+), 407 deletions(-) create mode 100644 lang/de.po~ diff --git a/CHANGELOG.md b/CHANGELOG.md index c7064ae4a..856783ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [3.9.1](https://github.com/ascii-dresden/asciii/compare/v3.9.0...v) (2020-01-05) + + +### Bug Fixes + +* open file paths, not just folders ([1b59d45](https://github.com/ascii-dresden/asciii/commit/1b59d45)) + + + +# [3.9.0](https://github.com/ascii-dresden/asciii/compare/v3.8.0...v3.9.0) (2019-11-24) + + +### Features + +* change fallback behavior ([fd8d91f](https://github.com/ascii-dresden/asciii/commit/fd8d91f)) +* print warning if yaml values are invalid ([cd0fea8](https://github.com/ascii-dresden/asciii/commit/cd0fea8)), closes [#81](https://github.com/ascii-dresden/asciii/issues/81) + + + # [3.8.0](https://github.com/ascii-dresden/asciii/compare/v3.7.3...v3.8.0) (2019-10-27) diff --git a/Cargo.lock b/Cargo.lock index f7cd4808e..358300081 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,10 +19,10 @@ dependencies = [ "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "trust-dns-resolver 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -50,7 +50,7 @@ dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (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-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -91,17 +91,17 @@ dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -111,15 +111,15 @@ dependencies = [ "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (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-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "trust-dns-resolver 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -129,10 +129,10 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -145,9 +145,9 @@ dependencies = [ "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -160,15 +160,15 @@ dependencies = [ "actix-service 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (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.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -201,7 +201,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -231,7 +231,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (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-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -253,7 +253,7 @@ dependencies = [ "awc 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -261,8 +261,8 @@ dependencies = [ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -270,7 +270,7 @@ dependencies = [ [[package]] name = "actix-web-actors" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "actix 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -286,9 +286,9 @@ name = "actix-web-codegen" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -375,15 +375,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "asciii" -version = "3.9.0" +version = "3.9.1" dependencies = [ "actix 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", "actix-files 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "actix-web 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "actix-web-actors 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "actix-web-actors 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "bill 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "color-backtrace 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "crowbook-intl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -406,13 +406,13 @@ dependencies = [ "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "prettytable-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustyline 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", "slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -426,7 +426,7 @@ name = "atty" version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -451,10 +451,10 @@ dependencies = [ "mime 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -464,10 +464,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "addr2line 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "findshlibs 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "goblin 0.0.24 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -477,8 +477,8 @@ name = "backtrace-sys" version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -501,8 +501,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "claude 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -517,7 +517,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "blake2b_simd" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -549,8 +549,8 @@ name = "brotli-sys" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -559,7 +559,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -591,7 +591,7 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.47" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -600,15 +600,14 @@ dependencies = [ [[package]] name = "cfg-if" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "chrono" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -624,7 +623,7 @@ dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -633,9 +632,9 @@ name = "claude" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -689,7 +688,7 @@ name = "crc32fast" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -715,7 +714,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 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)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -724,9 +723,10 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -735,7 +735,7 @@ name = "crossbeam-utils" version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -745,7 +745,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 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)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -773,7 +773,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -828,7 +828,7 @@ name = "dirs" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -838,7 +838,7 @@ name = "dirs" version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -847,8 +847,8 @@ name = "dirs-sys" version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -875,10 +875,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "encoding_rs" -version = "0.8.20" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -922,9 +922,9 @@ name = "failure_derive" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -944,7 +944,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -952,9 +952,9 @@ name = "flate2" version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1001,8 +1001,8 @@ name = "getrandom" version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1023,7 +1023,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "libgit2-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1048,7 +1048,7 @@ dependencies = [ "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.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1065,9 +1065,9 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "pest 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "pest_derive 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1081,7 +1081,7 @@ name = "hashbrown" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1095,10 +1095,10 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.1.3" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1106,13 +1106,13 @@ name = "hostname" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "http" -version = "0.1.19" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1130,7 +1130,7 @@ name = "humantime" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1138,7 +1138,7 @@ name = "icalendar" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1183,7 +1183,7 @@ name = "iovec" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1216,7 +1216,7 @@ version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1251,7 +1251,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.65" +version = "0.2.66" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1259,8 +1259,8 @@ name = "libgit2-sys" version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1270,10 +1270,10 @@ name = "libz-sys" version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1281,8 +1281,8 @@ name = "linked-hash-map" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_test 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_test 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1295,7 +1295,7 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1306,7 +1306,7 @@ name = "log" version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1342,7 +1342,7 @@ name = "memmap" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1373,8 +1373,8 @@ name = "miniz-sys" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1387,15 +1387,15 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.20" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "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.4 (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.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (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)", @@ -1409,8 +1409,8 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1429,8 +1429,8 @@ name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1440,7 +1440,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1479,8 +1479,8 @@ name = "num_cpus" version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1527,7 +1527,7 @@ name = "parking_lot" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1537,9 +1537,9 @@ name = "parking_lot_core" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (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.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1552,9 +1552,9 @@ name = "parking_lot_core" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (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.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1595,9 +1595,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "pest 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "pest_meta 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1645,7 +1645,7 @@ dependencies = [ "encode_unicode 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1653,9 +1653,9 @@ name = "proc-macro-hack" version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1668,7 +1668,7 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "quick-error" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1692,7 +1692,7 @@ name = "quote" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1700,7 +1700,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1710,7 +1710,7 @@ 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.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1722,7 +1722,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (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.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1740,7 +1740,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1814,7 +1814,7 @@ name = "rand_jitter" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1826,7 +1826,7 @@ 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.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1851,21 +1851,21 @@ dependencies = [ [[package]] name = "rayon" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1945,7 +1945,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1954,7 +1954,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1978,9 +1978,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encode_unicode 0.1.3 (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.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "nix 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2045,38 +2045,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.102" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.102" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.41" +version = "1.0.44" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_test" -version = "1.0.102" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2086,7 +2086,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "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.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2097,7 +2097,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2122,7 +2122,7 @@ name = "signal-hook" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2132,7 +2132,7 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2158,7 +2158,7 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2166,8 +2166,8 @@ name = "socket2" version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2202,10 +2202,10 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.8" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2215,9 +2215,9 @@ name = "synstructure" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2246,7 +2246,7 @@ version = "0.3.1" 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.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2263,7 +2263,7 @@ name = "textwrap" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2287,7 +2287,7 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2308,12 +2308,12 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-executor" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2332,18 +2332,18 @@ dependencies = [ [[package]] name = "tokio-reactor" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (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.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2354,13 +2354,13 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "signal-hook 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (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.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2381,20 +2381,20 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (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.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-timer" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2405,10 +2405,10 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (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.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2416,7 +2416,7 @@ name = "toml" version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2434,11 +2434,11 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (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.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2448,7 +2448,7 @@ name = "trust-dns-resolver" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2457,7 +2457,7 @@ dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "trust-dns-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2497,12 +2497,12 @@ name = "unicode-normalization" version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unicode-width" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2562,9 +2562,9 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2572,13 +2572,13 @@ name = "v_htmlescape" version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "v_escape 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "vcpkg" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2720,7 +2720,7 @@ dependencies = [ "checksum actix-threadpool 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6b5ae85d13da7e6fb86b1b7bc83185e0e3bd4cc5f421c887e1803796c034d35d" "checksum actix-utils 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "908c3109948f5c37a8b57fd343a37dcad5bb1d90bfd06300ac96b17bbe017b95" "checksum actix-web 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "af3a1b967cdbacb903c4b9ae71257a7f098d881b25eb483d0c468b7dac579b03" -"checksum actix-web-actors 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e10aa864e841618a5c03b4d1aa1716ee3f149dea2745e5fce1e4f1f844935f64" +"checksum actix-web-actors 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "42ebee30be1864aa8dfccea853468516ae4c82303c73df96563728284e246f3b" "checksum actix-web-codegen 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "068a33520e21c1eea89726be4d6b3ce2e6b81046904367e1677287695a043abb" "checksum actix_derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0bf5f6d7bf2d220ae8b4a7ae02a572bb35b7c4806b24049af905ab8110de156c" "checksum addr2line 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "95b06ae5a8a3bae54910c9029a52f83203ce2001c71b10b1faae3a337fee4ab5" @@ -2743,7 +2743,7 @@ dependencies = [ "checksum bill 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d036d5a2e7d062b336177441d1f91285c380bf00e227dba29317a90a4d9df2e3" "checksum bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dead7461c1127cf637931a1e50934eb6eee8bff2f74433ac7909e9afcee04a3" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -"checksum blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b83b7baab1e671718d78204225800d6b170e648188ac7dc992e9d6bddf87d0c0" +"checksum blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" "checksum brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd" @@ -2752,9 +2752,9 @@ dependencies = [ "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" -"checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" -"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" -"checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" +"checksum cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "f52a465a666ca3d838ebbf08b241383421412fe7ebb463527bba275526d89f76" +"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +"checksum chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum claude 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "32c19e73dbefae81d6d8d11dcc16be303e5d3ce5cd3186a9162a0353eda213a5" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" @@ -2767,7 +2767,7 @@ dependencies = [ "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" -"checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" +"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" "checksum crowbook-intl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04db38a154dbc8411c49a39b0c514fc29951deaf179bebee581ceb9f72a52c85" @@ -2786,7 +2786,7 @@ dependencies = [ "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum encode_unicode 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "28d65f1f5841ef7c6792861294b72beda34c664deb8be27970f36c306b7da1ce" "checksum encode_unicode 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" -"checksum encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)" = "87240518927716f79692c2ed85bfe6e98196d18c6401ec75355760233a7e12e9" +"checksum encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" = "cd8d03faa7fe0c1431609dfad7bbe827af30f82e1e2ae6f7ee4fca6bd764bc28" "checksum enum-as-inner 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3d58266c97445680766be408285e798d3401c6d4c378ec5552e78737e681e37d" "checksum enum_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "406ac2a8c9eedf8af9ee1489bee9e50029278a6456c740f7454cf8a158abc816" "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" @@ -2811,9 +2811,9 @@ dependencies = [ "checksum hashbrown 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "29fba9abe4742d586dfd0c06ae4f7e73a1c2d86b856933509b269d82cdf06e18" "checksum hashbrown 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e1de41fb8dba9714efd92241565cdff73f78508c95697dd56787d3cba27e2353" "checksum hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead" -"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" +"checksum hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" "checksum hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "21ceb46a83a85e824ef93669c8b390009623863b5c195d1ba747292c0c72f94e" -"checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" +"checksum http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" "checksum icalendar 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75a8901ccefac278c602d505170d0dd1cafb83131e0900dfbef173c74cf747ed" @@ -2831,12 +2831,12 @@ dependencies = [ "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" +"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" "checksum libgit2-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4870c781f6063efb83150cd22c1ddf6ecf58531419e7570cdcced46970f64a16" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" -"checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" +"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" "checksum maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" @@ -2849,7 +2849,7 @@ dependencies = [ "checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599" "checksum miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9e3ae51cea1576ceba0dde3d484d30e6e5b86dee0b2d412fe3a16a15c98202" "checksum miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625" -"checksum mio 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)" = "72f4261ee7ab03cd36dc99eea4db8be6e83e4164da470e0c84f6726d6c605855" +"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" @@ -2880,8 +2880,8 @@ dependencies = [ "checksum prettytable-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fd04b170004fa2daccf418a7f8253aaf033c27760b5f225889024cf66d7ac2e" "checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" -"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc" +"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" @@ -2900,8 +2900,8 @@ dependencies = [ "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 rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" -"checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" +"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" +"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" "checksum redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d" @@ -2923,10 +2923,10 @@ dependencies = [ "checksum scroll_derive 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8f1aa96c45e7f5a91cb7fabe7b279f02fea7126239fc40b732316e8b6a2d0fcb" "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.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" -"checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" -"checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" -"checksum serde_test 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "00d9d9443b1a25de2526ad21a2efc89267df5387c36035fe3902fbda8a79d83c" +"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" +"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" +"checksum serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)" = "48c575e0cc52bdd09b47f330f646cf59afc586e9c4e3ccd6fc1f625b8ea1dad7" +"checksum serde_test 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "33f96dff8c3744387b53404ea33e834073b0791dcc1ea9c85b805745f9324704" "checksum serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" "checksum serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35" "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" @@ -2936,13 +2936,13 @@ dependencies = [ "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" -"checksum smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecf3b85f68e8abaa7555aa5abdb1153079387e60b718283d732f03897fcfc86" +"checksum smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44e59e0c9fa00817912ae6e4e6e3c4fe04455e75699d06eedc7d85917ed8e8f4" "checksum socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e8b74de517221a2cb01a53349cf54182acdc31a074727d3079068448c0676d85" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" +"checksum syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1e4ff033220a41d1a57d8125eab57bf5263783dfdcc18688b1dacc6ce9651ef8" "checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" "checksum term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" @@ -2954,13 +2954,13 @@ dependencies = [ "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" -"checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" +"checksum tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "ca6df436c42b0c3330a82d855d2ef017cd793090ad550a6bc2184f4b933532ab" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" -"checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" +"checksum tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6732fe6b53c8d11178dcb77ac6d9682af27fc6d4cb87789449152e5377377146" "checksum tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296" "checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" +"checksum tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1739638e364e558128461fc1ad84d997702c8e31c2e6b18fb99842268199e827" "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" "checksum trust-dns-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5559ebdf6c2368ddd11e20b11d6bbaf9e46deb803acd7815e93f5a7b4a6d2901" @@ -2971,7 +2971,7 @@ dependencies = [ "checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b561e267b2326bb4cebfc0ef9e68355c7abe6c6f522aeac2f5bf95d56c59bdcf" -"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" +"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" @@ -2981,7 +2981,7 @@ dependencies = [ "checksum v_escape 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "660b101c07b5d0863deb9e7fb3138777e858d6d2a79f9e6049a27d1cc77c6da6" "checksum v_escape_derive 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c2ca2a14bc3fc5b64d188b087a7d3a927df87b152e941ccfbc66672e20c467ae" "checksum v_htmlescape 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e33e939c0d8cf047514fb6ba7d5aac78bc56677a6938b2ee67000b91f2e97e41" -"checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" +"checksum vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" diff --git a/Cargo.toml b/Cargo.toml index 076fb7635..923d1c5d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asciii" -version = "3.9.0" +version = "3.9.1" authors = ["Hendrik Sollich "] license = "MIT/Apache-2.0" readme = "README.md" @@ -91,6 +91,7 @@ pretty_assertions = "0.6" [features] default = ["cli", "document_export", "git_statuses", "serialization", "deserialization", "server", "shell", "localize"] travis_compatible = ["cli", "document_export", "git_statuses", "serialization", "deserialization", "shell", "meta", "version_string"] +mini_tool = ["cli", "document_export"] full_tool = ["travis_compatible", "localize"] server= ["actix", "actix-files", "actix-web", "actix-web-actors"] webapp = ["server"] diff --git a/README.md b/README.md index f886ad294..78e140cfa 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,20 @@ msgmerge -U lang/de.po lang/default.pot to update the german local file `lang/de.po`. Now you only need to update any empty field and check the file in as well. -## CI/CD +## Features +asciii comes with different sets of feature configurations, most of which are there to speed up development time. By default most useful features are turned on, such as `webapp`, `shell` and `localization`. You can build asciii with a reduced features set by passing these arguments to `cargo build`: -### Travis-CI [![Build Status](https://travis-ci.org/ascii-dresden/asciii.svg?branch=master)](https://travis-ci.org/ascii-dresden/asciii) \ No newline at end of file +<<<<<<< HEAD +### `--no-default-features --features full_tool` +* everything except the `webserver` + +### `--no-default-features --features mini_tool` +======= +### `--no-default-features --features full_tool` +* everything except the `webserver` + +### `--no-default-features --features mini_tool` +>>>>>>> a76b17a24... fix: open file paths, not just folders +* no `shell`, `git_statuses`, `localization`, `meta` or `serde`, just `cli` and `document_export` + +Please check `Cargo.toml` for all features. diff --git a/lang/de.po b/lang/de.po index b94eb4483..293faa045 100644 --- a/lang/de.po +++ b/lang/de.po @@ -65,541 +65,546 @@ msgid "set's up a new instance" msgstr "richtet eine neue Instanz ein" #: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:27 -msgid "set's up a new instance. Clones the repository and initializes the global config file." -msgstr "richtet eine neue Instanz ein. Klont das Repository und initialisiert die globale Konfigurationsdatei." +msgid "" +"set's up a new instance. Clones the repository and initializes the global " +"config file." +msgstr "" +"richtet eine neue Instanz ein. Klont das Repository und initialisiert die " +"globale Konfigurationsdatei." -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:28 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:29 msgid "Remote repository" msgstr "Remote Repository" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:31 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:32 msgid "where to clone to" msgstr "Wohin clonen?" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:36 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:70 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:284 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:303 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:538 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:721 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:37 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:71 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:285 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:304 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:539 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:722 msgid "Override the configured editor" msgstr "Überschreibt das Jahr" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:45 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:46 msgid "Create a new project" msgstr "Rechnung erstellen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:48 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:49 msgid "Project name" msgstr "Projektname" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:52 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:53 msgid "Manually set the date of the project" msgstr "Setze das Datum eines Projekts" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:59 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:60 msgid "Override the description of the project" msgstr "Überschreibe die Beschreibung eines Projekts" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:64 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:65 msgid "Use a specific template" msgstr "Benutze ein bestimmtes Vorlage" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:76 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:77 msgid "Override the manager of the project" msgstr "Überschreibt den Projektmanager" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:82 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:83 msgid "Manually set the start time of the project" msgstr "Setzt die Anfangszeit des Projekts manuell" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:87 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:88 msgid "Manually set the end time of the project" msgstr "Setzt die Endzeit des Projekts manuell" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:92 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:93 msgid "Overrides the duration of the event" msgstr "Überschreibt die Dauer des Events" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:97 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:98 msgid "Do not edit the file after creation" msgstr "Nach Erstellen nicht editieren" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:104 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:105 msgid "List Projects" msgstr "Projekte auflisten" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:107 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:108 msgid "list archived projects of a specific year, defaults to the current year" msgstr "" "Liste archivierte Projtekte eines bestimmten Jahres auf. Standard: Aktuelles " "Jahr" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:116 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:551 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:577 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:117 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:552 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:578 msgid "List projects from that year, archived or not" msgstr "Liste Projekte dieses Jahres auf, ob archiviert oder nicht" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:124 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:125 msgid "Add extra fields to print for each project listed" msgstr "Gibt extra Felder von Projekten mit aus" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:131 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:132 msgid "Filter selection by field content" msgstr "Filtert Ausgabe nach" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:138 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:139 msgid "Show Errors for each project" msgstr "Zeigt Fehler mit an" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:143 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:144 msgid "Show colors" msgstr "Liste in Farbe" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:148 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:149 msgid "Show colors for each project" msgstr "Zeigt Liste in Faribe" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:154 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:155 msgid "Show non-verbose list" msgstr "Überschreibe Verbose Einstellung" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:158 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:159 msgid "Print in csv form" msgstr "Ausgabe als CSV" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:164 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:165 msgid "Opposite of simple" msgstr "Mehr Details" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:171 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:172 msgid "Sort by :" msgstr "Sortiere Ausgabe nach: " -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:178 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:585 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:179 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:586 msgid "List all projects, ever" msgstr "Liste alle Projekte auf, alle" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:183 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:184 msgid "List templates" msgstr "Liste Vorlagen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:189 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:190 msgid "List years in archive" msgstr "Liste Jahre im Archiv" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:193 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:194 msgid "List paths to each project file" msgstr "Listet Pfade zu Projektdatein" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:199 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:200 #, fuzzy msgid "List broken projects without project file" msgstr "Listet Pfade zu Projektdatein" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:205 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:206 msgid "List all computed data fields that can be used with --details" msgstr "" "Liste mögliche berechnete Felder auf die in --details verwendet werden " "können." -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:211 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:212 msgid "Print nothing, expect the fields supplied via --details" msgstr "Gibt nichts aus, mit Ausnahme der Angaben in --details" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:218 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:219 msgid "Open storage path" msgstr "Öffnet peicherverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:226 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:265 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:359 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:450 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:475 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:497 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:650 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:692 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:786 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:811 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:845 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:870 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:227 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:266 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:360 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:451 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:476 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:498 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:651 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:693 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:787 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:812 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:846 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:871 msgid "Search term, possibly event name" msgstr "Suchbegriff oder Eventname" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:231 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:232 msgid "Open path to templates instead" msgstr "Zeigt Vorlagenverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:237 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:238 msgid "Open path to created documents instead" msgstr "Zeigt Ausgabeverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:243 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:511 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:244 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:512 msgid "Open path to current binary instead" msgstr "Zeigt Pfad dieses Programms" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:249 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:517 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:250 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:518 msgid "Open invoice file" msgstr "Rechnung öffnen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:255 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:523 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:256 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:524 msgid "Open offer file" msgstr "Angebot öffnen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:263 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:264 msgid "Edit a specific project" msgstr "Bearbeite ein bestimmtes Projekt" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:271 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:386 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:464 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:480 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:666 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:272 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:387 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:465 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:481 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:667 msgid "Pick an archived project" msgstr "Suche im Archiv" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:278 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:297 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:279 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:298 msgid "Edit a template file, use `list --templates` to learn which." msgstr "" "Bearbeite eine Vorlage. Können mit list --templates aufgelistet werden." -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:294 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:295 msgid "Edit the meta data store" msgstr "Extradaten bearbeiten" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:314 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:315 msgid "Move a Project into the archive" msgstr "Archiviere ein Project" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:316 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:317 msgid "Search terms to match the project" msgstr "Suchbegriffe" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:323 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:324 msgid "Archives the project, even though it is not completely valid" msgstr "Archiviere ein Projekt, selbst wenn es noch nicht vollständig ist" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:329 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:330 msgid "Archives all projects that can be archived" msgstr "Archiviere alle Projekte die archiviert werden können" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:335 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:336 msgid "Override the year" msgstr "Überschreibt das Jahr" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:343 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:344 msgid "Move a Project out of the archive" msgstr "Verschiebt ein archviertes Projekt zurück ins Arbeitsverzeichnis" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:345 -msgid "Specify the Archiv" +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:346 +#, fuzzy +msgid "Specify the archive" msgstr "Welches Jahr" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:349 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:350 msgid "The name of the project, duh!" msgstr "Der Name des Projekts" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:357 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:358 msgid "Display a specific project" msgstr "Zeige ein Projekt an" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:365 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:366 msgid "Show project as JSON" msgstr "Zeige das Projekt als Json" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:370 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:371 msgid "Show project as iCal" msgstr "Zeige das Projekt als iCal" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:375 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:376 #, fuzzy msgid "Show project as raw yaml" msgstr "Zeige das Projekt als yaml" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:379 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:380 msgid "Shows a particular detail" msgstr "Zeigt ein bestimmtes Detail an" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:394 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:395 msgid "Shows fields that can be filled automatically" msgstr "Zeigt Felder an die automatisch gefüllt werden können" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:400 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:401 msgid "Shows the errors in this project" msgstr "Zeigt Fehler im Projekt" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:406 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:407 msgid "Show fields in templates that are filled" msgstr "Zeigt Felder an die automatisch gefüllt werden können" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:413 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:414 msgid "List files that belong to a project" msgstr "Datein in diesem Projektverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:417 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:418 msgid "Display values in invoice mode" msgstr "Zeigt Werte an (Rechnungs Modules)" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:423 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:424 msgid "Display values in offer mode" msgstr "Zeigt Werte an (Angebots Modules)" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:434 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:435 msgid "Show as csv" msgstr "Als CSV anzeigen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:448 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:449 msgid "Set a value in a project file" msgstr "Setzt einen Wert in einer Projekt Datei" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:455 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:456 msgid "Which field to set" msgstr "Welches Feld zu setzen?" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:460 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:461 msgid "What to put in the field" msgstr "Wert" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:473 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:474 msgid "Assign invoice id to project" msgstr "Rechnungsnummer zuweisen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:489 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:490 msgid "Show storage path" msgstr "Zeigt den Speicherverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:501 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:502 msgid "Shows templates path instead" msgstr "Zeigt Vorlagenverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:506 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:507 msgid "Shows path to created documents instead" msgstr "Zeigt Ausgabeverzeichniss" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:531 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:532 msgid "Open an archive instead" msgstr "Öffnet das Vorlagenverzeichniss im Editor" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:543 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:544 msgid "Open the working directory in an editor" msgstr "Öffnet das Arbeitsverzeichnis im Editor" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:549 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:550 msgid "Produces a CSV report for a given year" msgstr "Erzeugt einen CSV Report des gegebenen Jahres" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:562 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:563 msgid "List archived projects of a specific year, defaults to the current year" msgstr "" "Liste archivierte Projtekte eines bestimmten Jahres auf. Standard: Aktuelles " "Jahr" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:571 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:572 msgid "Include open tasks" msgstr "Aufgaben erzeugen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:591 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:592 msgid "Experimental: open dues" msgstr "(experimentel): zeige offene Posten" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:594 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:600 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:595 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:601 msgid "Show unpayed wages" msgstr "Zeige unbezahlte " -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:608 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:609 msgid "Creates documents from projects" msgstr "Erzeuge Dokumente aus Projekten" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:612 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:613 msgid "Manually pass a file path" msgstr "Dateinamen manuell angeben" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:618 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:619 msgid "Manually pass a output folder" msgstr "Zielverzeichniss manuell angeben" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:624 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:625 msgid "Do it against better judgement" msgstr "Tu es auch wenn's nicht geht" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:629 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:630 msgid "Only create the PDF file" msgstr "Nur PDF erzeugen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:634 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:686 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:635 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:687 msgid "Do not create final output file" msgstr "Erzeuge das finale Produkte nicht" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:640 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:641 msgid "Only prints to stdout" msgstr "Printet nur nach stdout" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:645 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:646 msgid "Open the pdf file afterwards." msgstr "Öffne die erzeugt PDF hinterher" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:655 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:656 msgid "Produce an offer document" msgstr "Erzeuge ein Angebot" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:661 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:662 msgid "Produce an invoice document" msgstr "Erzeuge ein Angebot" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:674 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:675 msgid "Use a particular template" msgstr "Benutze ein bestimmtes Template" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:682 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:683 msgid "Deletes a project" msgstr "Lösche ein Projekt" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:697 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:790 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:815 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:850 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:874 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:698 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:791 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:816 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:851 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:875 msgid "list archived projects" msgstr "Archivierte Projekte auflisten" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:713 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:714 msgid "Show and edit your config" msgstr "Anzeigen und Editieren der " -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:715 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:716 msgid "Edit your config" msgstr "Anzeigen und Editieren der Konfiguration" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:727 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:728 msgid "Show a specific config value" msgstr "Zeigt einen spezifischen Konfigurationswert an" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:734 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:735 msgid "Show default config" msgstr "Zeigt Standardeinstellungen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:740 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:741 msgid "set the root folder in the config" msgstr "konfiguriert das Rootverzeichnis" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:746 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:747 msgid "Show the location of the config file" msgstr "Zeigt den Pfad der Konfigdatei" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:752 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:753 msgid "Create config file." msgstr "Erstellt eine neue Konfigdatei" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:761 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:762 msgid "(experimental) starts interactive shell" msgstr "(experimental) startet eine interaktive shell" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:765 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:766 msgid "Show your name from config" msgstr "Zeigt deinen Namen aus der Konfiguration" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:770 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:771 msgid "Show the working tree status" msgstr "Zeige den Status des Arbeitsverzeichnisses" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:775 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:776 msgid "Pull and merge new commits from remote" msgstr "neue commits pullen und direkt mergen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:778 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:779 msgid "git pull with --rebase" msgstr "git pull mit --rebase" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:784 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:785 msgid "git diff" msgstr "git diff" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:797 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:798 msgid "Changes between the index and your last commit" msgstr "Änderungen zwischen Index und letztem Commit" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:802 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:822 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:857 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:881 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:803 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:823 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:858 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:882 msgid "A template" msgstr "Vorlage" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:809 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:810 msgid "Add file contents to the git-index" msgstr "Fügt Ändenderungen zum git-index hinzu" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:827 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:828 #, fuzzy msgid "Add all projects" msgstr "Liste alle Projekte auf, alle" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:835 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:836 msgid "Save changes locally" msgstr "Speichert Änderungen lokal" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:839 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:840 msgid "Upload locally saved changes to the remote" msgstr "Lade lokale Änderungen zum remote hoch" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:843 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:844 msgid "cleans changes and untracked files in project folder" msgstr "setzt Änderungen zurück und löscht ungetrackte Datein" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:863 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:864 msgid "equals git stash" msgstr "entspricht git stash" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:864 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:865 msgid "equals git pop" msgstr "entspricht git pop" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:868 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:869 msgid "Show commit logs" msgstr "Zeite Commitlog" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:888 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:889 msgid "Show information about the remote" msgstr "Zeit Informationen über den git-remote" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:893 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:894 msgid "Generates completion for bash, zsh, etc" msgstr "Generiert completions für bash, zsh, etc" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:895 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:896 msgid "what shell to generate completion for (bash, zsh, fish,PowerShell)" msgstr "für was genau sollen completions erzeugt werden" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:904 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:905 #, fuzzy msgid "Prints version information" msgstr "Gibt asciiis Version aus" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:909 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:910 msgid "show also build information" msgstr "auch Buildinformationen anzeigen" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:914 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:915 msgid "show verbose version as json" msgstr "Vollständige version als json" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:920 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:921 msgid "Opens the online documentation, please read it" msgstr "Öffnet die Online Dokumentation, please lies sie!" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:924 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:925 msgid "Opens the WebInterface 🤯" msgstr "WebInterface öffnen 🤯" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:1012 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:1013 msgid "please specify either bash, zsh, fish or powershell" msgstr "Bitte spezifizere entweder 'bash', 'zsh', 'fish' oder 'powershell'" @@ -644,33 +649,33 @@ msgstr "Möchten Sie die Rechnungsnummer von {:?} auf {} setzen?" msgid "You have to provide either a search term or path" msgstr "Du musst entweder einen Suchbegriff oder Pfad angeben" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:559 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:560 msgid "do you want to set your name?" msgstr "Willst du deinen Namen einstellen?" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:561 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:562 msgid "Is your name {:?}" msgstr "Ist dein Name {:?}" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:567 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:568 msgid "What is your name?" msgstr "Wie heißt du?" -#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:698 -#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:708 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:699 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:709 msgid "{} does not exist" msgstr "{} existiert nicht" -#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:185 +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:197 #, fuzzy msgid "WARNING: Can't make sense of {}" msgstr "{} verstehe ich nicht" -#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:223 +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:235 msgid "Project file is younger than pdf, continue anyway?" msgstr "Die PDF ist älter als die Projekt Datei, trotzdem fortfahren?" -#: /home/hendrik/code/ascii/asciii/src/lib.rs:71 +#: /home/hendrik/code/ascii/asciii/src/lib.rs:65 msgid "Documentation at: {}" msgstr "Dokumentation auf {}" @@ -683,7 +688,12 @@ msgstr "{} Tage" msgid "{} weeks" msgstr "{} Wochen" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:304 +#: /home/hendrik/code/ascii/asciii/src/project/error.rs:49 +#: /home/hendrik/code/ascii/asciii/src/project/error.rs:65 +msgid "{:?} is invalid: {}" +msgstr "" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:324 msgid "" "weird task edgecase in {:?}:\n" "{:?}" @@ -691,25 +701,25 @@ msgstr "" "seltener Edgecase {:?}:\n" "{:?}" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:312 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:332 msgid "Create an Invoice" msgstr "Rechnung erstellen" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:320 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:340 msgid "{}: Hungry employees!" msgstr "{}: Hungrige Mitarbeiter!" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:321 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:341 msgid "" "Pay {}\n" "You have had the money for {} days!" msgstr "Bitte bezahle {}, die Rechnung ist seit {} Tagen bezahlt" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:331 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:351 msgid "Inquire about: \"{event}\"!" msgstr "Erkundige dich über \"{event}\"!" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:332 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:352 msgid "" "{inum }{event:?} on {invoice_date} ({days} days ago) was already invoiced " "but is still not marked as payed.\n" @@ -720,21 +730,25 @@ msgstr "" "Bitte kontrolliere den Zahlungseingang und erkundige dich ggf. bei {client} " "({mail})." -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:342 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:362 msgid "{rnum}: payment is {weeks} weeks late: \"{event}\"" msgstr "{rnum}: Zahlungsverzug {weeks} Wochen: \"{event}\"" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:354 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:374 msgid "Archive {}" msgstr "Archiviere {}" -#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:355 +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:375 msgid "{:?} has been finished for {} days, get rid of it!" msgstr "{:?} ist seit {} Tagen abgeschlossen. Weg damit!" -#: /home/hendrik/code/ascii/asciii/src/project/spec_yaml.rs:60 +#: /home/hendrik/code/ascii/asciii/src/project/spec_yaml.rs:59 msgid "Responsible: {}" msgstr "Verantwortlich: {}" +#: /home/hendrik/code/ascii/asciii/src/project/yaml_provider.rs:131 +msgid "{} ({:?})" +msgstr "" + #~ msgid "really?" #~ msgstr "wirklich?" diff --git a/lang/de.po~ b/lang/de.po~ new file mode 100644 index 000000000..ee5880a17 --- /dev/null +++ b/lang/de.po~ @@ -0,0 +1,1353 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# LICENSE +# AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8\n" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:55 +msgid "INum" +msgstr "Rnum" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:56 +msgid "Designation" +msgstr "Bezeichnung" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:57 +msgid "Date" +msgstr "Datum" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:58 +msgid "InvoiceDate" +msgstr "Rechnungsdatum" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:59 +msgid "Caterer" +msgstr "Betreuer" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:60 +msgid "Responsible" +msgstr "Verantwortlich" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:61 +msgid "Payed on" +msgstr "Bezahlt am" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:62 +msgid "Amount" +msgstr "Betrag" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:63 +msgid "Canceled" +msgstr "Abgesagt" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:167 +#, fuzzy +msgid "do you realy want to delete {}?" +msgstr "Willst du {} wirklich löschen?" + +#: /home/hendrik/code/ascii/asciii/src/actions/mod.rs:184 +msgid "we could get rid of: {}" +msgstr "können archiviert werden: {}" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:14 +msgid "The ascii invoicer III" +msgstr "Der ascii Invoicer III" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:19 +msgid "Print errors with full backtrace" +msgstr "Fehler mit vollem Backtrace ausgeben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:26 +msgid "set's up a new instance" +msgstr "richtet eine neue Instanz ein" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:27 +<<<<<<< HEAD +msgid "set's up a new instance. Clones the repository and initializes the global config file." +msgstr "richtet eine neue Instanz ein. Klont das Repository und initialisiert die globale Konfigurationsdatei." + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:28 +msgid "Remote repository" +msgstr "Remote Repository" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:31 +msgid "where to clone to" +msgstr "Wohin clonen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:36 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:70 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:284 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:303 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:538 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:721 +msgid "Override the configured editor" +msgstr "Überschreibt das Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:45 +msgid "Create a new project" +msgstr "Rechnung erstellen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:48 +msgid "Project name" +msgstr "Projektname" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:52 +msgid "Manually set the date of the project" +msgstr "Setze das Datum eines Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:59 +msgid "Override the description of the project" +msgstr "Überschreibe die Beschreibung eines Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:64 +msgid "Use a specific template" +msgstr "Benutze ein bestimmtes Vorlage" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:76 +msgid "Override the manager of the project" +msgstr "Überschreibt den Projektmanager" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:82 +msgid "Manually set the start time of the project" +msgstr "Setzt die Anfangszeit des Projekts manuell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:87 +msgid "Manually set the end time of the project" +msgstr "Setzt die Endzeit des Projekts manuell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:92 +msgid "Overrides the duration of the event" +msgstr "Überschreibt die Dauer des Events" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:97 +msgid "Do not edit the file after creation" +msgstr "Nach Erstellen nicht editieren" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:104 +msgid "List Projects" +msgstr "Projekte auflisten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:107 +======= +msgid "" +"set's up a new instance. Clones the repository and initializes the global " +"config file." +msgstr "" +"richtet eine neue Instanz ein. Klont das Repository und initialisiert die " +"globale Konfigurationsdatei." + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:29 +msgid "Remote repository" +msgstr "Remote Repository" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:32 +msgid "where to clone to" +msgstr "Wohin clonen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:37 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:71 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:285 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:304 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:539 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:722 +msgid "Override the configured editor" +msgstr "Überschreibt das Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:46 +msgid "Create a new project" +msgstr "Rechnung erstellen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:49 +msgid "Project name" +msgstr "Projektname" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:53 +msgid "Manually set the date of the project" +msgstr "Setze das Datum eines Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:60 +msgid "Override the description of the project" +msgstr "Überschreibe die Beschreibung eines Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:65 +msgid "Use a specific template" +msgstr "Benutze ein bestimmtes Vorlage" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:77 +msgid "Override the manager of the project" +msgstr "Überschreibt den Projektmanager" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:83 +msgid "Manually set the start time of the project" +msgstr "Setzt die Anfangszeit des Projekts manuell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:88 +msgid "Manually set the end time of the project" +msgstr "Setzt die Endzeit des Projekts manuell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:93 +msgid "Overrides the duration of the event" +msgstr "Überschreibt die Dauer des Events" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:98 +msgid "Do not edit the file after creation" +msgstr "Nach Erstellen nicht editieren" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:105 +msgid "List Projects" +msgstr "Projekte auflisten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:108 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "list archived projects of a specific year, defaults to the current year" +msgstr "" +"Liste archivierte Projtekte eines bestimmten Jahres auf. Standard: Aktuelles " +"Jahr" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:116 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:551 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:577 +msgid "List projects from that year, archived or not" +msgstr "Liste Projekte dieses Jahres auf, ob archiviert oder nicht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:124 +msgid "Add extra fields to print for each project listed" +msgstr "Gibt extra Felder von Projekten mit aus" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:131 +msgid "Filter selection by field content" +msgstr "Filtert Ausgabe nach" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:138 +msgid "Show Errors for each project" +msgstr "Zeigt Fehler mit an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:143 +msgid "Show colors" +msgstr "Liste in Farbe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:148 +msgid "Show colors for each project" +msgstr "Zeigt Liste in Faribe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:154 +msgid "Show non-verbose list" +msgstr "Überschreibe Verbose Einstellung" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:158 +msgid "Print in csv form" +msgstr "Ausgabe als CSV" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:164 +msgid "Opposite of simple" +msgstr "Mehr Details" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:171 +msgid "Sort by :" +msgstr "Sortiere Ausgabe nach: " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:178 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:585 +msgid "List all projects, ever" +msgstr "Liste alle Projekte auf, alle" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:183 +msgid "List templates" +msgstr "Liste Vorlagen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:189 +msgid "List years in archive" +msgstr "Liste Jahre im Archiv" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:193 +msgid "List paths to each project file" +msgstr "Listet Pfade zu Projektdatein" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:199 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:117 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:552 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:578 +msgid "List projects from that year, archived or not" +msgstr "Liste Projekte dieses Jahres auf, ob archiviert oder nicht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:125 +msgid "Add extra fields to print for each project listed" +msgstr "Gibt extra Felder von Projekten mit aus" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:132 +msgid "Filter selection by field content" +msgstr "Filtert Ausgabe nach" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:139 +msgid "Show Errors for each project" +msgstr "Zeigt Fehler mit an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:144 +msgid "Show colors" +msgstr "Liste in Farbe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:149 +msgid "Show colors for each project" +msgstr "Zeigt Liste in Faribe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:155 +msgid "Show non-verbose list" +msgstr "Überschreibe Verbose Einstellung" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:159 +msgid "Print in csv form" +msgstr "Ausgabe als CSV" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:165 +msgid "Opposite of simple" +msgstr "Mehr Details" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:172 +msgid "Sort by :" +msgstr "Sortiere Ausgabe nach: " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:179 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:586 +msgid "List all projects, ever" +msgstr "Liste alle Projekte auf, alle" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:184 +msgid "List templates" +msgstr "Liste Vorlagen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:190 +msgid "List years in archive" +msgstr "Liste Jahre im Archiv" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:194 +msgid "List paths to each project file" +msgstr "Listet Pfade zu Projektdatein" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:200 +>>>>>>> a76b17a24... fix: open file paths, not just folders +#, fuzzy +msgid "List broken projects without project file" +msgstr "Listet Pfade zu Projektdatein" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:205 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:206 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "List all computed data fields that can be used with --details" +msgstr "" +"Liste mögliche berechnete Felder auf die in --details verwendet werden " +"können." + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:211 +msgid "Print nothing, expect the fields supplied via --details" +msgstr "Gibt nichts aus, mit Ausnahme der Angaben in --details" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:218 +msgid "Open storage path" +msgstr "Öffnet peicherverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:226 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:265 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:359 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:450 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:475 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:497 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:650 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:692 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:786 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:811 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:845 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:870 +msgid "Search term, possibly event name" +msgstr "Suchbegriff oder Eventname" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:231 +msgid "Open path to templates instead" +msgstr "Zeigt Vorlagenverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:237 +msgid "Open path to created documents instead" +msgstr "Zeigt Ausgabeverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:243 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:511 +msgid "Open path to current binary instead" +msgstr "Zeigt Pfad dieses Programms" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:249 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:517 +msgid "Open invoice file" +msgstr "Rechnung öffnen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:255 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:523 +msgid "Open offer file" +msgstr "Angebot öffnen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:263 +msgid "Edit a specific project" +msgstr "Bearbeite ein bestimmtes Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:271 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:386 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:464 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:480 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:666 +msgid "Pick an archived project" +msgstr "Suche im Archiv" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:278 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:297 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:212 +msgid "Print nothing, expect the fields supplied via --details" +msgstr "Gibt nichts aus, mit Ausnahme der Angaben in --details" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:219 +msgid "Open storage path" +msgstr "Öffnet peicherverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:227 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:266 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:360 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:451 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:476 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:498 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:651 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:693 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:787 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:812 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:846 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:871 +msgid "Search term, possibly event name" +msgstr "Suchbegriff oder Eventname" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:232 +msgid "Open path to templates instead" +msgstr "Zeigt Vorlagenverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:238 +msgid "Open path to created documents instead" +msgstr "Zeigt Ausgabeverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:244 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:512 +msgid "Open path to current binary instead" +msgstr "Zeigt Pfad dieses Programms" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:250 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:518 +msgid "Open invoice file" +msgstr "Rechnung öffnen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:256 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:524 +msgid "Open offer file" +msgstr "Angebot öffnen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:264 +msgid "Edit a specific project" +msgstr "Bearbeite ein bestimmtes Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:272 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:387 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:465 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:481 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:667 +msgid "Pick an archived project" +msgstr "Suche im Archiv" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:279 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:298 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "Edit a template file, use `list --templates` to learn which." +msgstr "" +"Bearbeite eine Vorlage. Können mit list --templates aufgelistet werden." + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:294 +msgid "Edit the meta data store" +msgstr "Extradaten bearbeiten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:314 +msgid "Move a Project into the archive" +msgstr "Archiviere ein Project" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:316 +msgid "Search terms to match the project" +msgstr "Suchbegriffe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:323 +msgid "Archives the project, even though it is not completely valid" +msgstr "Archiviere ein Projekt, selbst wenn es noch nicht vollständig ist" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:329 +msgid "Archives all projects that can be archived" +msgstr "Archiviere alle Projekte die archiviert werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:335 +msgid "Override the year" +msgstr "Überschreibt das Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:343 +msgid "Move a Project out of the archive" +msgstr "Verschiebt ein archviertes Projekt zurück ins Arbeitsverzeichnis" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:345 +msgid "Specify the Archiv" +msgstr "Welches Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:349 +msgid "The name of the project, duh!" +msgstr "Der Name des Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:357 +msgid "Display a specific project" +msgstr "Zeige ein Projekt an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:365 +msgid "Show project as JSON" +msgstr "Zeige das Projekt als Json" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:370 +msgid "Show project as iCal" +msgstr "Zeige das Projekt als iCal" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:375 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:295 +msgid "Edit the meta data store" +msgstr "Extradaten bearbeiten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:315 +msgid "Move a Project into the archive" +msgstr "Archiviere ein Project" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:317 +msgid "Search terms to match the project" +msgstr "Suchbegriffe" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:324 +msgid "Archives the project, even though it is not completely valid" +msgstr "Archiviere ein Projekt, selbst wenn es noch nicht vollständig ist" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:330 +msgid "Archives all projects that can be archived" +msgstr "Archiviere alle Projekte die archiviert werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:336 +msgid "Override the year" +msgstr "Überschreibt das Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:344 +msgid "Move a Project out of the archive" +msgstr "Verschiebt ein archviertes Projekt zurück ins Arbeitsverzeichnis" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:346 +#, fuzzy +msgid "Specify the archive" +msgstr "Welches Jahr" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:350 +msgid "The name of the project, duh!" +msgstr "Der Name des Projekts" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:358 +msgid "Display a specific project" +msgstr "Zeige ein Projekt an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:366 +msgid "Show project as JSON" +msgstr "Zeige das Projekt als Json" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:371 +msgid "Show project as iCal" +msgstr "Zeige das Projekt als iCal" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:376 +>>>>>>> a76b17a24... fix: open file paths, not just folders +#, fuzzy +msgid "Show project as raw yaml" +msgstr "Zeige das Projekt als yaml" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:379 +msgid "Shows a particular detail" +msgstr "Zeigt ein bestimmtes Detail an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:394 +msgid "Shows fields that can be filled automatically" +msgstr "Zeigt Felder an die automatisch gefüllt werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:400 +msgid "Shows the errors in this project" +msgstr "Zeigt Fehler im Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:406 +msgid "Show fields in templates that are filled" +msgstr "Zeigt Felder an die automatisch gefüllt werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:413 +msgid "List files that belong to a project" +msgstr "Datein in diesem Projektverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:417 +msgid "Display values in invoice mode" +msgstr "Zeigt Werte an (Rechnungs Modules)" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:423 +msgid "Display values in offer mode" +msgstr "Zeigt Werte an (Angebots Modules)" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:434 +msgid "Show as csv" +msgstr "Als CSV anzeigen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:448 +msgid "Set a value in a project file" +msgstr "Setzt einen Wert in einer Projekt Datei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:455 +msgid "Which field to set" +msgstr "Welches Feld zu setzen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:460 +msgid "What to put in the field" +msgstr "Wert" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:473 +msgid "Assign invoice id to project" +msgstr "Rechnungsnummer zuweisen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:489 +msgid "Show storage path" +msgstr "Zeigt den Speicherverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:501 +msgid "Shows templates path instead" +msgstr "Zeigt Vorlagenverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:506 +msgid "Shows path to created documents instead" +msgstr "Zeigt Ausgabeverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:531 +msgid "Open an archive instead" +msgstr "Öffnet das Vorlagenverzeichniss im Editor" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:543 +msgid "Open the working directory in an editor" +msgstr "Öffnet das Arbeitsverzeichnis im Editor" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:549 +msgid "Produces a CSV report for a given year" +msgstr "Erzeugt einen CSV Report des gegebenen Jahres" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:562 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:380 +msgid "Shows a particular detail" +msgstr "Zeigt ein bestimmtes Detail an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:395 +msgid "Shows fields that can be filled automatically" +msgstr "Zeigt Felder an die automatisch gefüllt werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:401 +msgid "Shows the errors in this project" +msgstr "Zeigt Fehler im Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:407 +msgid "Show fields in templates that are filled" +msgstr "Zeigt Felder an die automatisch gefüllt werden können" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:414 +msgid "List files that belong to a project" +msgstr "Datein in diesem Projektverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:418 +msgid "Display values in invoice mode" +msgstr "Zeigt Werte an (Rechnungs Modules)" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:424 +msgid "Display values in offer mode" +msgstr "Zeigt Werte an (Angebots Modules)" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:435 +msgid "Show as csv" +msgstr "Als CSV anzeigen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:449 +msgid "Set a value in a project file" +msgstr "Setzt einen Wert in einer Projekt Datei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:456 +msgid "Which field to set" +msgstr "Welches Feld zu setzen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:461 +msgid "What to put in the field" +msgstr "Wert" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:474 +msgid "Assign invoice id to project" +msgstr "Rechnungsnummer zuweisen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:490 +msgid "Show storage path" +msgstr "Zeigt den Speicherverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:502 +msgid "Shows templates path instead" +msgstr "Zeigt Vorlagenverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:507 +msgid "Shows path to created documents instead" +msgstr "Zeigt Ausgabeverzeichniss" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:532 +msgid "Open an archive instead" +msgstr "Öffnet das Vorlagenverzeichniss im Editor" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:544 +msgid "Open the working directory in an editor" +msgstr "Öffnet das Arbeitsverzeichnis im Editor" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:550 +msgid "Produces a CSV report for a given year" +msgstr "Erzeugt einen CSV Report des gegebenen Jahres" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:563 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "List archived projects of a specific year, defaults to the current year" +msgstr "" +"Liste archivierte Projtekte eines bestimmten Jahres auf. Standard: Aktuelles " +"Jahr" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:571 +msgid "Include open tasks" +msgstr "Aufgaben erzeugen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:591 +msgid "Experimental: open dues" +msgstr "(experimentel): zeige offene Posten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:594 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:600 +msgid "Show unpayed wages" +msgstr "Zeige unbezahlte " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:608 +msgid "Creates documents from projects" +msgstr "Erzeuge Dokumente aus Projekten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:612 +msgid "Manually pass a file path" +msgstr "Dateinamen manuell angeben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:618 +msgid "Manually pass a output folder" +msgstr "Zielverzeichniss manuell angeben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:624 +msgid "Do it against better judgement" +msgstr "Tu es auch wenn's nicht geht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:629 +msgid "Only create the PDF file" +msgstr "Nur PDF erzeugen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:634 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:686 +msgid "Do not create final output file" +msgstr "Erzeuge das finale Produkte nicht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:640 +msgid "Only prints to stdout" +msgstr "Printet nur nach stdout" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:645 +msgid "Open the pdf file afterwards." +msgstr "Öffne die erzeugt PDF hinterher" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:655 +msgid "Produce an offer document" +msgstr "Erzeuge ein Angebot" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:661 +msgid "Produce an invoice document" +msgstr "Erzeuge ein Angebot" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:674 +msgid "Use a particular template" +msgstr "Benutze ein bestimmtes Template" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:682 +msgid "Deletes a project" +msgstr "Lösche ein Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:697 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:790 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:815 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:850 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:874 +msgid "list archived projects" +msgstr "Archivierte Projekte auflisten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:713 +msgid "Show and edit your config" +msgstr "Anzeigen und Editieren der " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:715 +msgid "Edit your config" +msgstr "Anzeigen und Editieren der Konfiguration" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:727 +msgid "Show a specific config value" +msgstr "Zeigt einen spezifischen Konfigurationswert an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:734 +msgid "Show default config" +msgstr "Zeigt Standardeinstellungen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:740 +msgid "set the root folder in the config" +msgstr "konfiguriert das Rootverzeichnis" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:746 +msgid "Show the location of the config file" +msgstr "Zeigt den Pfad der Konfigdatei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:752 +msgid "Create config file." +msgstr "Erstellt eine neue Konfigdatei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:761 +msgid "(experimental) starts interactive shell" +msgstr "(experimental) startet eine interaktive shell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:765 +msgid "Show your name from config" +msgstr "Zeigt deinen Namen aus der Konfiguration" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:770 +msgid "Show the working tree status" +msgstr "Zeige den Status des Arbeitsverzeichnisses" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:775 +msgid "Pull and merge new commits from remote" +msgstr "neue commits pullen und direkt mergen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:778 +msgid "git pull with --rebase" +msgstr "git pull mit --rebase" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:784 +msgid "git diff" +msgstr "git diff" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:797 +msgid "Changes between the index and your last commit" +msgstr "Änderungen zwischen Index und letztem Commit" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:802 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:822 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:857 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:881 +msgid "A template" +msgstr "Vorlage" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:809 +msgid "Add file contents to the git-index" +msgstr "Fügt Ändenderungen zum git-index hinzu" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:827 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:572 +msgid "Include open tasks" +msgstr "Aufgaben erzeugen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:592 +msgid "Experimental: open dues" +msgstr "(experimentel): zeige offene Posten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:595 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:601 +msgid "Show unpayed wages" +msgstr "Zeige unbezahlte " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:609 +msgid "Creates documents from projects" +msgstr "Erzeuge Dokumente aus Projekten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:613 +msgid "Manually pass a file path" +msgstr "Dateinamen manuell angeben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:619 +msgid "Manually pass a output folder" +msgstr "Zielverzeichniss manuell angeben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:625 +msgid "Do it against better judgement" +msgstr "Tu es auch wenn's nicht geht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:630 +msgid "Only create the PDF file" +msgstr "Nur PDF erzeugen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:635 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:687 +msgid "Do not create final output file" +msgstr "Erzeuge das finale Produkte nicht" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:641 +msgid "Only prints to stdout" +msgstr "Printet nur nach stdout" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:646 +msgid "Open the pdf file afterwards." +msgstr "Öffne die erzeugt PDF hinterher" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:656 +msgid "Produce an offer document" +msgstr "Erzeuge ein Angebot" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:662 +msgid "Produce an invoice document" +msgstr "Erzeuge ein Angebot" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:675 +msgid "Use a particular template" +msgstr "Benutze ein bestimmtes Template" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:683 +msgid "Deletes a project" +msgstr "Lösche ein Projekt" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:698 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:791 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:816 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:851 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:875 +msgid "list archived projects" +msgstr "Archivierte Projekte auflisten" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:714 +msgid "Show and edit your config" +msgstr "Anzeigen und Editieren der " + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:716 +msgid "Edit your config" +msgstr "Anzeigen und Editieren der Konfiguration" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:728 +msgid "Show a specific config value" +msgstr "Zeigt einen spezifischen Konfigurationswert an" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:735 +msgid "Show default config" +msgstr "Zeigt Standardeinstellungen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:741 +msgid "set the root folder in the config" +msgstr "konfiguriert das Rootverzeichnis" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:747 +msgid "Show the location of the config file" +msgstr "Zeigt den Pfad der Konfigdatei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:753 +msgid "Create config file." +msgstr "Erstellt eine neue Konfigdatei" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:762 +msgid "(experimental) starts interactive shell" +msgstr "(experimental) startet eine interaktive shell" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:766 +msgid "Show your name from config" +msgstr "Zeigt deinen Namen aus der Konfiguration" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:771 +msgid "Show the working tree status" +msgstr "Zeige den Status des Arbeitsverzeichnisses" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:776 +msgid "Pull and merge new commits from remote" +msgstr "neue commits pullen und direkt mergen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:779 +msgid "git pull with --rebase" +msgstr "git pull mit --rebase" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:785 +msgid "git diff" +msgstr "git diff" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:798 +msgid "Changes between the index and your last commit" +msgstr "Änderungen zwischen Index und letztem Commit" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:803 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:823 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:858 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:882 +msgid "A template" +msgstr "Vorlage" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:810 +msgid "Add file contents to the git-index" +msgstr "Fügt Ändenderungen zum git-index hinzu" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:828 +>>>>>>> a76b17a24... fix: open file paths, not just folders +#, fuzzy +msgid "Add all projects" +msgstr "Liste alle Projekte auf, alle" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:835 +msgid "Save changes locally" +msgstr "Speichert Änderungen lokal" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:839 +msgid "Upload locally saved changes to the remote" +msgstr "Lade lokale Änderungen zum remote hoch" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:843 +msgid "cleans changes and untracked files in project folder" +msgstr "setzt Änderungen zurück und löscht ungetrackte Datein" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:863 +msgid "equals git stash" +msgstr "entspricht git stash" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:864 +msgid "equals git pop" +msgstr "entspricht git pop" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:868 +msgid "Show commit logs" +msgstr "Zeite Commitlog" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:888 +msgid "Show information about the remote" +msgstr "Zeit Informationen über den git-remote" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:893 +msgid "Generates completion for bash, zsh, etc" +msgstr "Generiert completions für bash, zsh, etc" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:895 +msgid "what shell to generate completion for (bash, zsh, fish,PowerShell)" +msgstr "für was genau sollen completions erzeugt werden" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:904 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:836 +msgid "Save changes locally" +msgstr "Speichert Änderungen lokal" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:840 +msgid "Upload locally saved changes to the remote" +msgstr "Lade lokale Änderungen zum remote hoch" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:844 +msgid "cleans changes and untracked files in project folder" +msgstr "setzt Änderungen zurück und löscht ungetrackte Datein" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:864 +msgid "equals git stash" +msgstr "entspricht git stash" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:865 +msgid "equals git pop" +msgstr "entspricht git pop" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:869 +msgid "Show commit logs" +msgstr "Zeite Commitlog" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:889 +msgid "Show information about the remote" +msgstr "Zeit Informationen über den git-remote" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:894 +msgid "Generates completion for bash, zsh, etc" +msgstr "Generiert completions für bash, zsh, etc" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:896 +msgid "what shell to generate completion for (bash, zsh, fish,PowerShell)" +msgstr "für was genau sollen completions erzeugt werden" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:905 +>>>>>>> a76b17a24... fix: open file paths, not just folders +#, fuzzy +msgid "Prints version information" +msgstr "Gibt asciiis Version aus" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:909 +msgid "show also build information" +msgstr "auch Buildinformationen anzeigen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:914 +msgid "show verbose version as json" +msgstr "Vollständige version als json" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:920 +msgid "Opens the online documentation, please read it" +msgstr "Öffnet die Online Dokumentation, please lies sie!" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:924 +msgid "Opens the WebInterface 🤯" +msgstr "WebInterface öffnen 🤯" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:1012 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:910 +msgid "show also build information" +msgstr "auch Buildinformationen anzeigen" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:915 +msgid "show verbose version as json" +msgstr "Vollständige version als json" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:921 +msgid "Opens the online documentation, please read it" +msgstr "Öffnet die Online Dokumentation, please lies sie!" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:925 +msgid "Opens the WebInterface 🤯" +msgstr "WebInterface öffnen 🤯" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:1013 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "please specify either bash, zsh, fish or powershell" +msgstr "Bitte spezifizere entweder 'bash', 'zsh', 'fish' oder 'powershell'" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/app.rs:1024 +msgid "Date Format must be DD.MM.YYYY" +msgstr "Das Datum muss das Format TT.MM.JJJJ haben" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/git.rs:71 +msgid "" +"{} {} (fetch)\n" +"{} {} (push)" +msgstr "" +"{} {} (fetch)\n" +"{} {} (push)" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/git.rs:78 +msgid "no remote" +msgstr "kein Remote" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/git.rs:82 +#, fuzzy +msgid "no remote name" +msgstr "Projektname" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:45 +msgid "asciii asciii? {}" +msgstr "" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:51 +msgid "{} that's not a command" +msgstr "{} das ist kein Befehl" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:57 +msgid "what do you think this is, a shell? {}" +msgstr "was denkst du was das hier ist, eine shell? {}" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:367 +msgid "Do you want to set the invoice number in {:?} to {}?" +msgstr "Möchten Sie die Rechnungsnummer von {:?} auf {} setzen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:443 +msgid "You have to provide either a search term or path" +msgstr "Du musst entweder einen Suchbegriff oder Pfad angeben" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:559 +msgid "do you want to set your name?" +msgstr "Willst du deinen Namen einstellen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:561 +msgid "Is your name {:?}" +msgstr "Ist dein Name {:?}" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:567 +msgid "What is your name?" +msgstr "Wie heißt du?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:698 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:708 +msgid "{} does not exist" +msgstr "{} existiert nicht" + +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:185 +======= +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:560 +msgid "do you want to set your name?" +msgstr "Willst du deinen Namen einstellen?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:562 +msgid "Is your name {:?}" +msgstr "Ist dein Name {:?}" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:568 +msgid "What is your name?" +msgstr "Wie heißt du?" + +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:699 +#: /home/hendrik/code/ascii/asciii/src/bin/cli/subcommands/mod.rs:709 +msgid "{} does not exist" +msgstr "{} existiert nicht" + +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:197 +>>>>>>> a76b17a24... fix: open file paths, not just folders +#, fuzzy +msgid "WARNING: Can't make sense of {}" +msgstr "{} verstehe ich nicht" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:223 +msgid "Project file is younger than pdf, continue anyway?" +msgstr "Die PDF ist älter als die Projekt Datei, trotzdem fortfahren?" + +#: /home/hendrik/code/ascii/asciii/src/lib.rs:71 +======= +#: /home/hendrik/code/ascii/asciii/src/document_export/mod.rs:235 +msgid "Project file is younger than pdf, continue anyway?" +msgstr "Die PDF ist älter als die Projekt Datei, trotzdem fortfahren?" + +#: /home/hendrik/code/ascii/asciii/src/lib.rs:65 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "Documentation at: {}" +msgstr "Dokumentation auf {}" + +#: /home/hendrik/code/ascii/asciii/src/project/computed_field.rs:88 +msgid "{} days" +msgstr "{} Tage" + +#: /home/hendrik/code/ascii/asciii/src/project/computed_field.rs:92 +#: /home/hendrik/code/ascii/asciii/src/project/computed_field.rs:96 +msgid "{} weeks" +msgstr "{} Wochen" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:304 +======= +#: /home/hendrik/code/ascii/asciii/src/project/error.rs:49 +#: /home/hendrik/code/ascii/asciii/src/project/error.rs:65 +msgid "{:?} is invalid: {}" +msgstr "" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:324 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "" +"weird task edgecase in {:?}:\n" +"{:?}" +msgstr "" +"seltener Edgecase {:?}:\n" +"{:?}" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:312 +msgid "Create an Invoice" +msgstr "Rechnung erstellen" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:320 +msgid "{}: Hungry employees!" +msgstr "{}: Hungrige Mitarbeiter!" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:321 +======= +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:332 +msgid "Create an Invoice" +msgstr "Rechnung erstellen" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:340 +msgid "{}: Hungry employees!" +msgstr "{}: Hungrige Mitarbeiter!" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:341 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "" +"Pay {}\n" +"You have had the money for {} days!" +msgstr "Bitte bezahle {}, die Rechnung ist seit {} Tagen bezahlt" + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:331 +msgid "Inquire about: \"{event}\"!" +msgstr "Erkundige dich über \"{event}\"!" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:332 +======= +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:351 +msgid "Inquire about: \"{event}\"!" +msgstr "Erkundige dich über \"{event}\"!" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:352 +>>>>>>> a76b17a24... fix: open file paths, not just folders +msgid "" +"{inum }{event:?} on {invoice_date} ({days} days ago) was already invoiced " +"but is still not marked as payed.\n" +"Please check for incoming payments! You can ask {client} ({mail})." +msgstr "" +"{inum }{event:?} wurde am {invoice_date} in Rechnung gestellt (vor {days} " +"Tagen) aber noch nicht als bezahlt markiert.\n" +"Bitte kontrolliere den Zahlungseingang und erkundige dich ggf. bei {client} " +"({mail})." + +<<<<<<< HEAD +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:342 +msgid "{rnum}: payment is {weeks} weeks late: \"{event}\"" +msgstr "{rnum}: Zahlungsverzug {weeks} Wochen: \"{event}\"" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:354 +msgid "Archive {}" +msgstr "Archiviere {}" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:355 +msgid "{:?} has been finished for {} days, get rid of it!" +msgstr "{:?} ist seit {} Tagen abgeschlossen. Weg damit!" + +#: /home/hendrik/code/ascii/asciii/src/project/spec_yaml.rs:60 +msgid "Responsible: {}" +msgstr "Verantwortlich: {}" + +======= +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:362 +msgid "{rnum}: payment is {weeks} weeks late: \"{event}\"" +msgstr "{rnum}: Zahlungsverzug {weeks} Wochen: \"{event}\"" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:374 +msgid "Archive {}" +msgstr "Archiviere {}" + +#: /home/hendrik/code/ascii/asciii/src/project/mod.rs:375 +msgid "{:?} has been finished for {} days, get rid of it!" +msgstr "{:?} ist seit {} Tagen abgeschlossen. Weg damit!" + +#: /home/hendrik/code/ascii/asciii/src/project/spec_yaml.rs:59 +msgid "Responsible: {}" +msgstr "Verantwortlich: {}" + +#: /home/hendrik/code/ascii/asciii/src/project/yaml_provider.rs:131 +msgid "{} ({:?})" +msgstr "" + +>>>>>>> a76b17a24... fix: open file paths, not just folders +#~ msgid "really?" +#~ msgstr "wirklich?" diff --git a/src/storage/mod.rs b/src/storage/mod.rs index fbe04bebe..a14ab4509 100644 --- a/src/storage/mod.rs +++ b/src/storage/mod.rs @@ -128,6 +128,15 @@ impl Default for StorageSelection { } } +fn is_dot_file(path: &Path) -> bool { + path + .file_name() + .and_then(std::ffi::OsStr::to_str) + .and_then(|s|s.chars().nth(0)) + .map(|c| c == '.') + .unwrap_or(false) +} + #[cfg_attr(feature = "serialization", derive(Serialize))] #[derive(Debug)] pub struct Paths { @@ -145,6 +154,7 @@ pub fn list_path_content(path:&Path) -> Result, Error> { Ok(fs::read_dir(path)? .filter_map(Result::ok) + .filter(|entry| !is_dot_file(&entry.path())) .map(|entry| entry.path()) .collect::>()) } @@ -575,7 +585,7 @@ impl Storage { /// Moves projects found through `search_terms` from the `year` back to the `Working` directory. /// /// Returns list of old and new paths. - pub fn unarchive_projects(&self, year:i32, search_terms:&[&str]) -> Result, Error> { + pub fn unarchive_projects(&self, year:i32, search_terms:&[&str]) -> Result, Error> { let projects = self.search_projects_any(StorageDir::Archive(year), search_terms)?; let mut moved_files = Vec::new(); @@ -797,13 +807,6 @@ impl Storage { fn open_paths(&self, paths: &[PathBuf]) -> ProjectList { trace!("open_paths({:?})", paths); let mut projects = paths.par_iter() - .filter(|path| - if let Ok(meta) = path.metadata() { - meta.is_dir() - } else { - false - } - ) .filter_map(|path| Self::open_project(path).ok()) .collect::>(); @@ -866,7 +869,13 @@ impl Storage { } fn open_project(path: &PathBuf) -> Result { - let project = L::open_folder(path); + let meta = path.metadata().unwrap(); + let project = + if meta.is_dir() { + L::open_folder(path) + } else { + L::open_file(path) + }; if let Err(ref err) = project { warn!("{}", err); } diff --git a/src/util/mod.rs b/src/util/mod.rs index de2cf7179..c0800a913 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -6,6 +6,7 @@ use std::ffi::OsStr; use std::path::{Path, PathBuf}; use std::process::{self, Command, ExitStatus}; use chrono::NaiveTime; +use bill::Currency; use dirs::home_dir; use failure::{Error, ResultExt}; @@ -157,8 +158,6 @@ pub fn exit(status:ExitStatus) -> !{ process::exit(status.code().unwrap_or(1)); } -use bill::Currency; - /// One place to decide how to display currency pub fn currency_to_string(currency:&Currency) -> String { currency.postfix().to_string()