diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-29 10:35:42 -0700 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-29 10:35:42 -0700 |
| commit | a594313b5f47531138b79795fdf72ae74776f1cf (patch) | |
| tree | e5a192831216bf729e0ccd13dac94185775296c2 /Cargo.lock | |
| parent | 41a1f3ed336d3a03b9ce4091ee4dde0b724511e3 (diff) | |
| download | varanus-a594313b5f47531138b79795fdf72ae74776f1cf.tar.gz varanus-a594313b5f47531138b79795fdf72ae74776f1cf.tar.bz2 varanus-a594313b5f47531138b79795fdf72ae74776f1cf.zip | |
Sending json-serialized state over socket.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -110,6 +110,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" [[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] name = "proc-macro2" version = "1.0.84" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -128,6 +134,12 @@ dependencies = [ ] [[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] name = "serde" version = "1.0.203" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -148,6 +160,17 @@ dependencies = [ ] [[package]] +name = "serde_json" +version = "1.0.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d947f6b3163d8857ea16c4fa0dd4840d52f3041039a85decd46867eb1abef2e4" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] name = "strsim" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -182,6 +205,7 @@ version = "0.1.0" dependencies = [ "clap", "serde", + "serde_json", ] [[package]] |
