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

9
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"
@ -748,4 +755,4 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b31594f29d27036c383b53b59ed3476874d518f0efb151b27a4c275141390e"
dependencies = [
"tap",
]
]

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"