Add serde dependency

This commit is contained in:
Valentin Brandl 2019-04-19 16:00:56 +02:00
parent fb49b8df45
commit 1aabff7971
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D
2 changed files with 4 additions and 0 deletions

2
Cargo.lock generated
View File

@ -682,6 +682,8 @@ dependencies = [
"git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
"structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -12,4 +12,6 @@ futures = "0.1.25"
git2 = "0.8.0"
openssl-probe = "0.1.2"
pretty_env_logger = "0.3.0"
serde = "1.0.90"
serde_derive = "1.0.90"
structopt = "0.2.15"