diff options
| author | Beiri22 <beier1@hs-mittweida.de> | 2023-08-30 17:11:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-30 17:11:21 +0200 |
| commit | d3ca2ff4ec32cb96b5f742ac48a4d09321ab5966 (patch) | |
| tree | c19b83c5e8d153cc890c49239be7e33944b71813 /Cargo.lock | |
| parent | 19b91d59d1467956f8175146a16b63d303eee0d7 (diff) | |
Support CBOR binary serialization / deserialization (#2000)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 36 |
1 files changed, 35 insertions, 1 deletions
@@ -299,6 +299,33 @@ dependencies = [ ] [[package]] +name = "ciborium" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" +dependencies = [ + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + +[[package]] +name = "ciborium-ll" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +dependencies = [ + "ciborium-io", + "half 1.8.2", +] + +[[package]] name = "cipher" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -668,7 +695,7 @@ checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18" dependencies = [ "bit_field", "flume", - "half", + "half 2.2.1", "lebe", "miniz_oxide", "rayon-core", @@ -849,6 +876,12 @@ dependencies = [ [[package]] name = "half" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + +[[package]] +name = "half" version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" @@ -2927,6 +2960,7 @@ version = "0.7.0" dependencies = [ "az", "chinese-number", + "ciborium", "comemo", "csv", "ecow", |
