Organized imports

This commit is contained in:
Lucien Cartier-Tilet 2020-03-29 03:07:26 +02:00
parent c418323b5c
commit f3e672e29c
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 6 additions and 2 deletions

View File

@ -7,8 +7,12 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Logger
log = "0.4"
simplelog = "0.7"
# Struct serializing and deserializing
serde = {version = "1.0", features = ["derive"]}
serde_yaml = "0.7"
serde_json = "1.0"
log = "0.4"
simplelog = "0.7"
# Regex support
regex = "1.3"