-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove requirement on bitvec for std feature and constructing TypeDef…
…BitSequence. (#168) * Don't force bitvec to be included when "std" is enabled. * update UI test output * Ah, we test on nightly * don't require bit-vec to construct a TypeDefBitSequence * no bit-vec feature on std actually * update test output again * bump rust-version to 1.60.0 and add section in unreleased
- Loading branch information
Showing
4 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "scale-info" | |
version = "2.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
rust-version = "1.60.0" | ||
|
||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -25,7 +25,7 @@ scale = { package = "parity-scale-codec", version = "3", default-features = fals | |
[features] | ||
default = ["std"] | ||
std = [ | ||
"bitvec/std", | ||
"bitvec?/std", | ||
"scale/std", | ||
] | ||
derive = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters