Add serde_json to serialize and deserialize the cache

This commit is contained in:
Valentin Brandl 2019-04-19 22:12:41 +02:00
parent f7b2da2b5a
commit b31f66d54b
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -684,6 +684,7 @@ dependencies = [
"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)",
"serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
"structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -14,4 +14,5 @@ openssl-probe = "0.1.2"
pretty_env_logger = "0.3.0"
serde = "1.0.90"
serde_derive = "1.0.90"
serde_json = "1.0.39"
structopt = "0.2.15"