Add dep: serde_json
This commit is contained in:
parent
47ba17f012
commit
7b6ff6ac13
2 changed files with 20 additions and 0 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -8,6 +8,7 @@ dependencies = [
|
|||
"log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rustty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"term 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"term_grid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -173,6 +174,23 @@ dependencies = [
|
|||
"term 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_json"
|
||||
version = "0.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.4.0"
|
||||
|
|
|
@ -17,6 +17,8 @@ config = "0.1.2"
|
|||
|
||||
chrono = "0.2.16"
|
||||
|
||||
serde_json = "0.6.0"
|
||||
|
||||
clap = { version = "1.4.5", features = ["yaml"] }
|
||||
rustty = "0.1.9"
|
||||
term = "0.2.12"
|
||||
|
|
Loading…
Reference in a new issue