we'll test ser/de with JSON

This commit is contained in:
Brian Hicks 2022-08-10 16:56:48 -05:00
parent 441b1f7b7d
commit 3bf5949b32
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50
2 changed files with 26 additions and 1 deletions

View File

@ -78,6 +78,12 @@ dependencies = [
"unindent",
]
[[package]]
name = "itoa"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
[[package]]
name = "libc"
version = "0.2.119"
@ -206,15 +212,33 @@ dependencies = [
"quickcheck",
"quickcheck_macros",
"serde",
"serde_json",
"static_assertions",
]
[[package]]
name = "ryu"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
[[package]]
name = "serde"
version = "1.0.143"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553"
[[package]]
name = "serde_json"
version = "1.0.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "static_assertions"
version = "1.1.0"

View File

@ -15,10 +15,11 @@ serde = { version = "1", optional = true }
[dev-dependencies]
indoc = "1.0.3"
libc = "0.2.106"
pretty_assertions = "1.0.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
libc = "0.2.106"
serde_json = "1.0.83"
[features]
std = []