fix(rust): preserve JSON float round trips

This commit is contained in:
Yujong Lee 2026-09-01 18:07:19 -07:00
parent fd6265c054
commit fca4adacaa

View file

@ -22,7 +22,7 @@ pythonize = "0.29.0"
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "http2", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json = { version = "1.0", features = ["float_roundtrip"] }
sha2 = "0.10"
subtle = "2"
thiserror = "2.0"