Skip to content

Commit

Permalink
fix: make serde feature no_std (#1730)
Browse files Browse the repository at this point in the history
Co-authored-by: Jay White <[email protected]>
  • Loading branch information
iajoiner and JayWhite2357 authored Feb 21, 2025
1 parent 339239d commit 28736da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 28736da

Please sign in to comment.