dependencies: add json for trace output

This commit is contained in:
Edward Amsden 2023-11-09 19:13:12 -06:00
parent 749444374d
commit 45e9ab00bd
2 changed files with 9 additions and 1 deletions

7
rust/ares/Cargo.lock generated
View File

@ -20,6 +20,7 @@ dependencies = [
"either",
"ibig",
"intmap",
"json",
"lazy_static",
"libc",
"memmap",
@ -322,6 +323,12 @@ dependencies = [
"wasm-bindgen",
]
[[package]]
name = "json"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
[[package]]
name = "lazy_static"
version = "1.4.0"

View File

@ -20,6 +20,7 @@ criterion = "0.4"
either = "1.9.0"
ibig = { path = "../ibig-rs" }
intmap = "1.1.0"
json = "0.12.4"
lazy_static = "1.4.0"
libc = "0.2.126"
memmap = "0.7.0"