Skip to content

Commit

Permalink
avoid using std feature in rust_decimal (#19)
Browse files Browse the repository at this point in the history
It's not necessary and reduces the generated `Cargo.lock`'s contents
  • Loading branch information
droundy committed Jun 18, 2024
1 parent f3de652 commit 0e29b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serde_avro_fast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
integer-encoding = { default-features = false, version = "4" }
num-traits = "0.2"
rand = "0.8"
rust_decimal = { version = "1", default-features = false, features = ["std", "serde-with-str"] }
rust_decimal = { version = "1", default-features = false, features = ["serde-with-str"] }
serde = "1"
serde-transcode = "1"
serde_derive = "1"
Expand Down

0 comments on commit 0e29b8f

Please sign in to comment.