Skip to content

Commit

Permalink
fix: no-std tests did not run due to dev-dependencies re-enabling std…
Browse files Browse the repository at this point in the history
… feature (#144)
  • Loading branch information
frol committed May 31, 2023
1 parent 466b740 commit b18042d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion borsh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bson = { version = "2", optional = true }
bytes = "1"
bson = "2"
# Enable the "bytes" and "bson" features in integ tests: https://github.com/rust-lang/cargo/issues/2911#issuecomment-1464060655
borsh = { path = ".", features = ["bytes", "bson"] }
borsh = { path = ".", default_features = false, features = ["bytes", "bson"] }

[features]
default = ["std"]
Expand Down

0 comments on commit b18042d

Please sign in to comment.