diff options
| author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2024-09-26 08:39:37 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-26 11:39:37 +0000 |
| commit | 320c28844f4e2686ab1bedfc507c9c7babafed63 (patch) | |
| tree | 1fc37697db5d7bf615f55700589668d862ea342e /Cargo.lock | |
| parent | a69ada7889c5c5996d0660401e981b6baac14a83 (diff) | |
Fixed-point decimal type (#4900)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -2028,6 +2028,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" [[package]] +name = "rust_decimal" +version = "1.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" +dependencies = [ + "arrayvec", + "num-traits", +] + +[[package]] name = "rustc-hash" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2666,6 +2676,7 @@ dependencies = [ "rayon", "regex", "roxmltree", + "rust_decimal", "rustybuzz", "serde", "serde_json", |
