Feature/colorlog#239 (#365)

* added color carete #239

* added hex library

* added color config file parser #239

* added color output feature #239

* changed fast hashmap library

* added color output description(Japanese) #239

* added color output description(English) #239

* fixed medium level typo

* removed white color font level #239

* added trim and loose colorcode condition #239

* fixed hex convert error panic #239

- output warn and go next iterator when happen hex convert panic

- added user input in hex convert warn output to use easily
This commit is contained in:
DustInDark
2022-01-26 01:39:14 +09:00
committed by GitHub
parent 15ee980711
commit b12029de5c
7 changed files with 147 additions and 18 deletions
Generated
+20 -1
View File
@@ -232,6 +232,17 @@ dependencies = [
"bitflags",
]
[[package]]
name = "colored"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
dependencies = [
"atty",
"lazy_static",
"winapi 0.3.9",
]
[[package]]
name = "console"
version = "0.11.3"
@@ -766,11 +777,13 @@ dependencies = [
"base64",
"chrono",
"clap",
"colored",
"csv",
"dotenv",
"evtx",
"flate2",
"hashbrown",
"hex 0.4.3",
"hhmmss",
"lazy_static",
"linked-hash-map",
@@ -802,6 +815,12 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hhmmss"
version = "0.1.0"
@@ -1927,7 +1946,7 @@ checksum = "50e26b33762cd2ec755267c4a4af36adb0864b93afbe595ea8ff61b5528f4c11"
dependencies = [
"chrono",
"error-chain 0.11.0",
"hex",
"hex 0.3.2",
"reqwest",
"serde",
"serde_derive",