From 3a6c57bae5b5e3c401862922b12e754635f007bd Mon Sep 17 00:00:00 2001 From: Able Date: Wed, 5 Apr 2023 10:07:45 -0500 Subject: [PATCH] Disable std in xml lib --- libraries/xml/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/xml/Cargo.toml b/libraries/xml/Cargo.toml index b4a752d..c840f99 100644 --- a/libraries/xml/Cargo.toml +++ b/libraries/xml/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bincode = "1.3.3" -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0", default-features = false, features = ["derive"] } +bincode = { version = "1.3.3", default-features = false }