Skip to content

Commit

Permalink
Fix no_std support of "serde1" feature
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Apr 30, 2021
1 parent 3e6f604 commit 9eaef07
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,16 @@ name = "kurtosis"
num-traits = { version = "0.2", default-features = false }
float-ord = "0.3"
easy-cast = { version = "0.4", default-features = false, optional = true }
serde = { version = "1", features = ["derive"], optional = true }
serde_derive = { version = "1", optional = true }
serde-big-array = { version = "0.3.0", optional = true }
rayon = { version = "1.3", optional = true }

[dependencies.serde]
version = "1"
default-features = false
features = ["derive"]
optional = true

[dev-dependencies]
bencher = "0.1"
rand = "0.8"
Expand Down

0 comments on commit 9eaef07

Please sign in to comment.