Skip to content

Commit

Permalink
Allow serde without std
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinmit committed Jul 13, 2022
1 parent 7863686 commit d6c38b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Never again should you need to specify units in a comment!"""
default = ["std"]
oibit = []
spec = []
std = []
std = [ "serde/std" ]
nightly = []
test = [ "approx", "clapme", "serde", "serde_test", "rand"]

Expand All @@ -35,7 +35,7 @@ Never again should you need to specify units in a comment!"""
auto-args = { version = "0.2.4", optional = true }
generic-array = "0.14.0"
num-traits = { version = "0.2.5", default-features = false }
serde = { version = "1.0.0", optional = true }
serde = { version = "1.0.0", optional = true, default-features = false }
serde_test = { version = "1.0.0", optional = true }
rand = { version = "0.8.5", optional = true }
typenum = "1.6.0"
Expand Down

0 comments on commit d6c38b0

Please sign in to comment.