Skip to content
Snippets Groups Projects
Commit ff06b666 authored by DeathwingTheBoss's avatar DeathwingTheBoss
Browse files

Preserve JSON order

parent 846f6e9e
No related branches found
No related tags found
No related merge requests found
...@@ -1558,6 +1558,7 @@ version = "1.0.94" ...@@ -1558,6 +1558,7 @@ version = "1.0.94"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
dependencies = [ dependencies = [
"indexmap",
"itoa", "itoa",
"ryu", "ryu",
"serde", "serde",
......
...@@ -11,7 +11,7 @@ description = "A caching reverse-proxy application for the Hive blockchain." ...@@ -11,7 +11,7 @@ description = "A caching reverse-proxy application for the Hive blockchain."
actix-web = "4.3.1" actix-web = "4.3.1"
reqwest = { version = "0.11.14", features = ["blocking", "json"] } reqwest = { version = "0.11.14", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.94" serde_json = { version = "1.0.94", features = ["preserve_order"] }
lru_time_cache = "0.11.11" lru_time_cache = "0.11.11"
humantime = "2.1.0" humantime = "2.1.0"
config = "0.13.3" config = "0.13.3"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment