added json handling package

This commit is contained in:
Nickiel12 2021-12-18 18:37:15 -08:00
parent d2b5ea643d
commit 505dd4e57b
2 changed files with 32 additions and 1 deletions

30
Cargo.lock generated
View file

@ -31,6 +31,7 @@ name = "church_controller"
version = "0.1.0"
dependencies = [
"ctrlc",
"serde_json",
"workctl",
]
@ -44,6 +45,12 @@ dependencies = [
"winapi",
]
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "libc"
version = "0.2.112"
@ -72,6 +79,29 @@ dependencies = [
"memoffset",
]
[[package]]
name = "ryu"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
[[package]]
name = "serde"
version = "1.0.132"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b9875c23cf305cd1fd7eb77234cbb705f21ea6a72c637a5c6db5fe4b8e7f008"
[[package]]
name = "serde_json"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcbd0344bc6533bc7ec56df11d42fb70f1b912351c0825ccb7211b59d8af7cf5"
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "winapi"
version = "0.3.9"

View file

@ -7,4 +7,5 @@ edition = "2021"
[dependencies]
workctl = "0.2.0"
ctrlc = "3.2.1"
ctrlc = "3.2.1"
serde_json = "1.0"