We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ordering
Vec
1 parent fd8c2e1 commit 21cdf26Copy full SHA for 21cdf26
ciborium/src/value/canonical.rs
@@ -1,8 +1,9 @@
1
// SPDX-License-Identifier: Apache-2.0
2
3
use crate::value::Value;
4
+use alloc::vec::Vec;
5
+use core::cmp::Ordering;
6
use serde::{de, ser};
-use std::cmp::Ordering;
7
8
/// Manually serialize values to compare them.
9
fn serialized_canonical_cmp(v1: &Value, v2: &Value) -> Ordering {
ciborium/src/value/integer.rs
@@ -1,5 +1,5 @@
macro_rules! implfrom {
($( $(#[$($attr:meta)+])? $t:ident)+) => {
0 commit comments