adding more serde dependancies

This commit is contained in:
shockrah 2020-08-06 19:55:42 -07:00
parent 626f16afb8
commit bb426897d2
2 changed files with 5 additions and 0 deletions

4
server/Cargo.lock generated
View File

@ -383,6 +383,7 @@ dependencies = [
"hyper 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)",
"mysql_async 0.23.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1172,6 +1173,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "serde"
version = "1.0.114"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "serde_derive"

View File

@ -24,6 +24,7 @@ rand = "0.7.3"
clap = "2.32.2"
serde_json = "1.0"
serde = { version = "1.0.114", features = [ "derive" ] }
[dev-dependencies]
tokio-test = "0.2.1"