mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 20:45:29 +00:00
allow globs in config file paths
The configuration parser will have to be changed again because YAML does not support asterisks in its key names.
This commit is contained in:
parent
49813d0c68
commit
fdca530591
5 changed files with 86 additions and 22 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
|
@ -6,6 +6,7 @@ version = "2.4.1"
|
|||
dependencies = [
|
||||
"env_logger",
|
||||
"getopts",
|
||||
"glob",
|
||||
"log",
|
||||
"mime_guess",
|
||||
"once_cell",
|
||||
|
|
@ -95,6 +96,12 @@ dependencies = [
|
|||
"unicode-width",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "glob"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
||||
|
||||
[[package]]
|
||||
name = "hermit-abi"
|
||||
version = "0.1.18"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue