-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped version to 1.10.0, turned
BoolWit
into more generic `BoolWit… (
#13) * Bumped version to 1.10.0, turned `BoolWit` into more generic `BoolWitG` enum Replaced `typewit::const_marker::BoolWit` enum with type alias to `BoolWitG`` Added `Copy + Clone + Debug` impls to `BoolWit` Fixed broken reference to array::from_fn Fixed `"adt_const_marker"` crate feature Disabled UI tests because they can't be locally replicated (must be a version-by-version nightly difference) Made trybuild optional to fix MSRV of tests
- Loading branch information
1 parent
2d79ba0
commit d824f85
Showing
13 changed files
with
145 additions
and
14 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "typewit" | ||
version = "1.9.0" | ||
version = "1.10.0" | ||
authors = ["rodrimati1992 <[email protected]>"] | ||
rust-version = "1.57.0" | ||
edition = "2021" | ||
|
@@ -29,8 +29,10 @@ optional = true | |
version = "0.7" | ||
default-features = false | ||
|
||
[dev-dependencies.trybuild] | ||
# no such thing as optional dev-dependencies, aaaaaaah | ||
[dependencies.trybuild] | ||
version = "1.0" | ||
optional = true | ||
|
||
[features] | ||
default = ["proc_macros"] | ||
|
@@ -44,7 +46,7 @@ alloc = [] | |
mut_refs = ["rust_stable"] | ||
nightly_mut_refs = ["mut_refs"] | ||
docsrs = [] | ||
__ui_tests = [] | ||
__ui_tests = ["trybuild"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["alloc", "rust_stable", "nightly_mut_refs", "adt_const_marker", "docsrs"] | ||
|
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
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
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
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
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
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