-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
error[E0599]: no method named `wrapping_add_signed` found for type `usize` in the current scope --> /Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.14/src/tables.rs:407:22 | 407 | (sum.wrapping_add_signed(isize::from(add)), info) | ^^^^^^^^^^^^^^^^^^^ method not found in `usize`
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 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 = "argp" | |
version = "0.3.0" | ||
authors = ["Jakub Jirutka <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.56.0" | ||
rust-version = "1.66.0" | ||
keywords = ["args", "arguments", "derive", "cli"] | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parser optimized for code size" | ||
|
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 = "argp_derive" | |
version = "0.3.0" | ||
authors = ["Jakub Jirutka <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.56.0" | ||
rust-version = "1.66.0" | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parsing optimized for code size" | ||
repository = "https://github.com/jirutka/argp" | ||
|