2019-04-11 12:30:29 -07:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2016-09-30 23:48:23 -07:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.7.6"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-09-30 23:48:23 -07:00
|
|
|
]
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-03-05 13:21:35 -08:00
|
|
|
]
|
|
|
|
|
2017-11-18 01:44:59 -08:00
|
|
|
[[package]]
|
2019-10-22 19:51:50 -07:00
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.12.1"
|
2016-11-07 21:01:27 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-11-07 21:01:27 -08:00
|
|
|
]
|
|
|
|
|
2019-04-11 15:23:14 -07:00
|
|
|
[[package]]
|
2019-10-22 19:51:50 -07:00
|
|
|
name = "assert_matches"
|
|
|
|
version = "1.3.0"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
|
|
[[package]]
|
2019-10-22 19:51:50 -07:00
|
|
|
name = "atty"
|
|
|
|
version = "0.2.13"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-03-05 13:21:35 -08:00
|
|
|
]
|
|
|
|
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
[[package]]
|
|
|
|
name = "backtrace"
|
|
|
|
version = "0.3.40"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"backtrace-sys 0.1.32 (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.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "backtrace-sys"
|
|
|
|
version = "0.1.32"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.2.1"
|
2016-10-02 22:30:28 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2019-07-06 20:55:46 -07:00
|
|
|
[[package]]
|
|
|
|
name = "c2-chacha"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.2.3"
|
2019-07-06 20:55:46 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-10-28 15:25:59 -07:00
|
|
|
]
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.0.46"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.1.10"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2016-10-02 22:30:28 -07:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2019-04-11 15:23:14 -07:00
|
|
|
version = "2.33.0"
|
2016-10-02 22:30:28 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2018-03-20 01:25:32 -07:00
|
|
|
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"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)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-06-19 13:21:32 -07:00
|
|
|
"vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-03-05 13:21:35 -08:00
|
|
|
]
|
|
|
|
|
2019-04-19 02:17:43 -07:00
|
|
|
[[package]]
|
|
|
|
name = "ctor"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.1.12"
|
2019-04-19 02:17:43 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-19 02:17:43 -07:00
|
|
|
]
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "ctrlc"
|
2019-07-06 20:55:46 -07:00
|
|
|
version = "3.1.3"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-07-06 20:55:46 -07:00
|
|
|
"nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-08-27 16:03:52 -07:00
|
|
|
]
|
|
|
|
|
2019-04-19 02:17:43 -07:00
|
|
|
[[package]]
|
|
|
|
name = "difference"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
[[package]]
|
|
|
|
name = "doc-comment"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "dotenv"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.15.0"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
2017-10-06 23:48:07 -07:00
|
|
|
name = "edit-distance"
|
2019-04-11 15:23:14 -07:00
|
|
|
version = "2.1.0"
|
2017-08-02 20:45:57 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2016-10-02 22:30:28 -07:00
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
2017-10-06 23:48:07 -07:00
|
|
|
name = "either"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.5.3"
|
2017-08-02 20:45:57 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.7.1"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"humantime 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)",
|
|
|
|
"regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
"termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-08-27 16:03:52 -07:00
|
|
|
]
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
2018-06-19 13:21:32 -07:00
|
|
|
name = "executable-path"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
[[package]]
|
|
|
|
name = "failure"
|
|
|
|
version = "0.1.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2019-07-06 20:55:46 -07:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.1.12"
|
2019-07-06 20:55:46 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
]
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.3.0"
|
2018-08-27 16:03:52 -07:00
|
|
|
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)",
|
|
|
|
]
|
|
|
|
|
2016-10-30 16:15:18 -07:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2019-04-11 16:35:16 -07:00
|
|
|
version = "0.8.0"
|
2016-10-30 16:15:18 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
2017-11-17 17:28:06 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "just"
|
2019-10-31 19:19:01 -07:00
|
|
|
version = "0.4.5"
|
2017-11-17 17:28:06 -08:00
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
"ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"edit-distance 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2017-11-30 10:38:44 -08:00
|
|
|
"executable-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 16:35:16 -07:00
|
|
|
"itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"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)",
|
|
|
|
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-19 02:17:43 -07:00
|
|
|
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"snafu 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2017-12-02 05:37:10 -08:00
|
|
|
"target 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-17 20:04:54 -07:00
|
|
|
"test-utilities 0.0.0",
|
2019-10-22 19:51:50 -07:00
|
|
|
"unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-10-30 16:15:18 -07:00
|
|
|
]
|
|
|
|
|
2017-11-30 08:46:57 -08:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.4.0"
|
2016-10-22 23:18:26 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.2.65"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.4.8"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-08-27 16:03:52 -07:00
|
|
|
]
|
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
2017-10-06 23:48:07 -07:00
|
|
|
name = "memchr"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "2.2.1"
|
2017-08-02 20:45:57 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "nix"
|
2019-07-06 20:55:46 -07:00
|
|
|
version = "0.14.1"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"cc 1.0.46 (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.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-08-27 16:03:52 -07:00
|
|
|
"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2019-04-19 02:17:43 -07:00
|
|
|
[[package]]
|
|
|
|
name = "output_vt100"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-19 02:17:43 -07:00
|
|
|
]
|
|
|
|
|
2019-07-06 20:55:46 -07:00
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.2.6"
|
2019-07-06 20:55:46 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2019-04-19 02:17:43 -07:00
|
|
|
[[package]]
|
|
|
|
name = "pretty_assertions"
|
|
|
|
version = "0.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"ctor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-19 02:17:43 -07:00
|
|
|
"difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2019-04-11 15:23:14 -07:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.0.6"
|
2019-04-11 15:23:14 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
]
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "quick-error"
|
|
|
|
version = "1.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.0.2"
|
2018-03-05 13:21:35 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-04-11 15:23:14 -07:00
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
]
|
2018-03-05 13:21:35 -08:00
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
2017-10-06 23:48:07 -07:00
|
|
|
name = "rand"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.7.2"
|
2017-08-02 20:45:57 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"libc 0.2.65 (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)",
|
2019-07-06 20:55:46 -07:00
|
|
|
"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.2.1"
|
2019-07-06 20:55:46 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
]
|
|
|
|
|
2019-07-06 20:55:46 -07:00
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.5.1"
|
2019-07-06 20:55:46 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_hc"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
]
|
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[[package]]
|
2017-10-06 23:48:07 -07:00
|
|
|
name = "redox_syscall"
|
2019-07-06 20:55:46 -07:00
|
|
|
version = "0.1.56"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-05-06 19:15:15 -07:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.3.1"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-09-30 23:48:23 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.6.12"
|
2018-02-16 01:24:38 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
2019-07-06 20:55:46 -07:00
|
|
|
version = "0.5.2"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2018-02-16 01:24:38 -08:00
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-02-16 01:24:38 -08:00
|
|
|
]
|
2016-09-30 23:48:23 -07:00
|
|
|
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
[[package]]
|
|
|
|
name = "rustc-demangle"
|
|
|
|
version = "0.1.16"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "snafu"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"snafu-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "snafu-derive"
|
|
|
|
version = "0.6.0"
|
|
|
|
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)",
|
|
|
|
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2016-10-02 22:30:28 -07:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2019-04-11 15:23:14 -07:00
|
|
|
version = "0.8.0"
|
2016-10-02 22:30:28 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.0.5"
|
2018-06-19 13:21:32 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"proc-macro2 1.0.6 (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)",
|
2018-03-05 13:21:35 -08:00
|
|
|
]
|
|
|
|
|
2017-12-02 05:37:10 -08:00
|
|
|
[[package]]
|
|
|
|
name = "target"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2016-10-05 13:58:18 -07:00
|
|
|
[[package]]
|
2019-07-06 20:55:46 -07:00
|
|
|
name = "tempfile"
|
|
|
|
version = "3.1.0"
|
2016-10-05 13:58:18 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-07-06 20:55:46 -07:00
|
|
|
"redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-10-02 22:30:28 -07:00
|
|
|
]
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
2019-07-06 20:55:46 -07:00
|
|
|
version = "1.0.5"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
2017-10-06 23:48:07 -07:00
|
|
|
]
|
|
|
|
|
2019-10-17 20:04:54 -07:00
|
|
|
[[package]]
|
|
|
|
name = "test-utilities"
|
|
|
|
version = "0.0.0"
|
|
|
|
dependencies = [
|
|
|
|
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2017-08-02 20:45:57 -07:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
2019-04-11 15:23:14 -07:00
|
|
|
version = "0.11.0"
|
2017-08-02 20:45:57 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
2017-08-02 20:45:57 -07:00
|
|
|
]
|
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[[package]]
|
|
|
|
name = "thread_local"
|
2019-04-11 15:23:14 -07:00
|
|
|
version = "0.3.6"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
2016-09-30 23:48:23 -07:00
|
|
|
]
|
|
|
|
|
2016-10-02 22:30:28 -07:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-width"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.1.6"
|
2016-10-02 22:30:28 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-03-05 13:21:35 -08:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.2.0"
|
2016-09-30 23:48:23 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2016-10-02 22:30:28 -07:00
|
|
|
[[package]]
|
|
|
|
name = "vec_map"
|
2018-06-19 13:21:32 -07:00
|
|
|
version = "0.8.1"
|
2016-10-02 22:30:28 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2017-09-10 17:28:00 -07:00
|
|
|
[[package]]
|
|
|
|
name = "void"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2019-10-22 19:51:50 -07:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
[[package]]
|
|
|
|
name = "which"
|
|
|
|
version = "3.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2018-02-16 01:24:38 -08:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "0.3.8"
|
2018-02-16 01:24:38 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2019-04-11 15:23:14 -07:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
]
|
|
|
|
|
2018-02-16 01:24:38 -08:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[[package]]
|
|
|
|
name = "wincolor"
|
2019-10-22 19:51:50 -07:00
|
|
|
version = "1.0.2"
|
2018-08-27 16:03:52 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
dependencies = [
|
2019-10-22 19:51:50 -07:00
|
|
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
2019-04-11 15:23:14 -07:00
|
|
|
"winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
2018-08-27 16:03:52 -07:00
|
|
|
]
|
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[metadata]
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
|
2018-03-05 13:21:35 -08:00
|
|
|
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
|
|
|
|
"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
|
|
|
"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
|
|
|
|
"checksum cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)" = "0213d356d3c4ea2c18c40b037c3be23cd639825c18f25ee670ac7813beeef99c"
|
|
|
|
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum ctor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd8ce37ad4184ab2ce004c33bf6379185d3b1c95801cab51026bd271bf68eedc"
|
2019-07-06 20:55:46 -07:00
|
|
|
"checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f"
|
2019-04-19 02:17:43 -07:00
|
|
|
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum edit-distance 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bbbaaaf38131deb9ca518a274a45bfdb8771f139517b073b16c2d3d32ae5037b"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
|
|
|
|
"checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
|
2017-11-30 10:38:44 -08:00
|
|
|
"checksum executable-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ebc5a6d89e3c90b84e8f33c8737933dda8f1c106b5415900b38b9d433841478"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571"
|
|
|
|
"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
2019-04-11 16:35:16 -07:00
|
|
|
"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8"
|
|
|
|
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
|
|
|
|
"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
|
2019-07-06 20:55:46 -07:00
|
|
|
"checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
|
2019-04-19 02:17:43 -07:00
|
|
|
"checksum output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
|
2019-04-19 02:17:43 -07:00
|
|
|
"checksum pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27"
|
2018-08-27 16:03:52 -07:00
|
|
|
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
|
|
|
|
"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412"
|
|
|
|
"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
|
|
|
|
"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
2019-07-06 20:55:46 -07:00
|
|
|
"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
|
|
|
"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
|
|
|
|
"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
|
2019-07-06 20:55:46 -07:00
|
|
|
"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
|
|
|
|
"checksum snafu 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "41207ca11f96a62cd34e6b7fdf73d322b25ae3848eb9d38302169724bb32cf27"
|
|
|
|
"checksum snafu-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4c5e338c8b0577457c9dda8e794b6ad7231c96e25b1b0dd5842d52249020c1c0"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
|
2017-12-02 05:37:10 -08:00
|
|
|
"checksum target 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "10000465bb0cc031c87a44668991b284fd84c0e6bd945f62d4af04e9e52a222a"
|
2019-07-06 20:55:46 -07:00
|
|
|
"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
|
|
|
|
"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
|
|
|
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20"
|
|
|
|
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
|
2018-06-19 13:21:32 -07:00
|
|
|
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
|
2017-09-10 17:28:00 -07:00
|
|
|
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
"checksum which 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5475d47078209a02e60614f7ba5e645ef3ed60f771920ac1906d7c1cc65024c8"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
|
2018-02-16 01:24:38 -08:00
|
|
|
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-04-11 15:23:14 -07:00
|
|
|
"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
|
2018-02-16 01:24:38 -08:00
|
|
|
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2019-10-22 19:51:50 -07:00
|
|
|
"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9"
|