This is an automated email from the ASF dual-hosted git repository.

iffyio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 28736da2 fix: make `serde` feature no_std (#1730)
28736da2 is described below

commit 28736da235174efa5e08a072a55f368c42271de7
Author: Ian Alexander Joiner <[email protected]>
AuthorDate: Fri Feb 21 01:18:51 2025 -0500

    fix: make `serde` feature no_std (#1730)
    
    Co-authored-by: Jay White <[email protected]>
---
 Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 06fed2c6..9caff251 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -49,7 +49,7 @@ bigdecimal = { version = "0.4.1", features = ["serde"], 
optional = true }
 log = "0.4"
 recursive = { version = "0.1.1", optional = true}
 
-serde = { version = "1.0", features = ["derive"], optional = true }
+serde = { version = "1.0", default-features = false, features = ["derive", 
"alloc"], optional = true }
 # serde_json is only used in examples/cli, but we have to put it outside
 # of dev-dependencies because of
 # https://github.com/rust-lang/cargo/issues/1596


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to