Skip to content

Commit

Permalink
Add borsh dep to Cargo manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Feb 29, 2024
1 parent 4df99d8 commit ae38b91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ equivalent = { version = "1.0", default-features = false }
arbitrary = { version = "1.0", optional = true, default-features = false }
quickcheck = { version = "1.0", optional = true, default-features = false }
serde = { version = "1.0", optional = true, default-features = false }
borsh = { version = "1.2", optional = true, default-features = false }
rayon = { version = "1.5.3", optional = true }

# Internal feature, only used when building as part of rustc,
Expand Down Expand Up @@ -54,7 +55,7 @@ no-dev-version = true
tag-name = "{{version}}"

[package.metadata.docs.rs]
features = ["arbitrary", "quickcheck", "serde", "rayon"]
features = ["arbitrary", "quickcheck", "serde", "borsh", "rayon"]
rustdoc-args = ["--cfg", "docsrs"]

[workspace]
Expand Down

0 comments on commit ae38b91

Please sign in to comment.