-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We also add an `all-succeeded` job to ensure that all other jobs pass. This allows us to mark only that job as required in GitHub.
- Loading branch information
Showing
4 changed files
with
42 additions
and
24 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
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,33 +1,33 @@ | ||
[package] | ||
name = "typenum" | ||
build = "build/main.rs" | ||
version = "1.16.0" # remember to update html_root_url | ||
authors = [ | ||
"Paho Lurie-Gregg <[email protected]>", | ||
"Andre Bogus <[email protected]>" | ||
] | ||
documentation = "https://docs.rs/typenum" | ||
repository = "https://github.com/paholg/typenum" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
description = """Typenum is a Rust library for type-level numbers evaluated at | ||
name = "typenum" | ||
build = "build/main.rs" | ||
version = "1.17.0" # remember to update html_root_url | ||
authors = [ | ||
"Paho Lurie-Gregg <[email protected]>", | ||
"Andre Bogus <[email protected]>", | ||
] | ||
documentation = "https://docs.rs/typenum" | ||
repository = "https://github.com/paholg/typenum" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
description = """Typenum is a Rust library for type-level numbers evaluated at | ||
compile time. It currently supports bits, unsigned integers, and signed | ||
integers. It also provides a type-level array of type-level numbers, but its | ||
implementation is incomplete.""" | ||
categories = ["no-std"] | ||
edition = "2018" | ||
rust-version = "1.37.0" | ||
categories = ["no-std"] | ||
edition = "2018" | ||
rust-version = "1.37.0" | ||
|
||
[dependencies] | ||
scale-info = { version = "1.0", default-features = false, optional = true } | ||
|
||
[lib] | ||
name = "typenum" | ||
name = "typenum" | ||
|
||
[features] | ||
no_std = [] | ||
i128 = [] | ||
strict = [] | ||
force_unix_path_separator = [] | ||
const-generics = [] | ||
scale_info = ["scale-info/derive"] | ||
no_std = [] | ||
i128 = [] | ||
strict = [] | ||
force_unix_path_separator = [] | ||
const-generics = [] | ||
scale_info = ["scale-info/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