-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide dev-dependencies from old cargo
error: failed to select a version for the requirement `clap = "^4"` candidate versions found which didn't match: 3.2.25, 3.2.24, 3.2.23, ... location searched: crates.io index required by package `criterion v0.5.0` ... which is depended on by `unicode-ident v1.0.8 (/home/runner/work/unicode-ident/unicode-ident)`
- Loading branch information
Showing
4 changed files
with
21 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/target | ||
/Cargo.lock |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[package] | ||
name = "unicode-ident-test" | ||
version = "0.0.0" | ||
authors = ["David Tolnay <dtolnay@gmail.com>"] | ||
edition = "2018" | ||
publish = false | ||
|
||
[lib] | ||
path = "test.rs" | ||
|
||
[dependencies] | ||
unicode-ident = { path = "../.." } | ||
|
||
[workspace] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#![no_std] | ||
|
||
pub use unicode_ident::*; |