]> git.proxmox.com Git - cargo.git/blobdiff - vendor/serde_json/src/value/partial_eq.rs
New upstream version 0.63.1
[cargo.git] / vendor / serde_json / src / value / partial_eq.rs
index 354ea5a5f8a24f0d211ec83163ed4bc483fd16ac..b4ef84c4f321e38db806f07fcd4f89b16306498c 100644 (file)
@@ -1,5 +1,5 @@
 use super::Value;
-use crate::lib::*;
+use alloc::string::String;
 
 fn eq_i64(value: &Value, other: i64) -> bool {
     value.as_i64().map_or(false, |i| i == other)