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:
Johann150 2021-02-12 14:50:27 +01:00
parent 49813d0c68
commit fdca530591
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
5 changed files with 86 additions and 22 deletions

7
Cargo.lock generated
View file

@ -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"