-
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 a GitHub action to check if all jobs have succeeded. This lets us set just this one job to required in GitHub settings.
- Loading branch information
Showing
4 changed files
with
47 additions
and
28 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,40 +1,40 @@ | ||
[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 = [] # Deprecated | ||
i128 = [] | ||
strict = [] | ||
force_unix_path_separator = [] # Deprecated | ||
const-generics = [] | ||
scale_info = ["scale-info/derive"] | ||
no_std = [] # Deprecated | ||
i128 = [] | ||
strict = [] | ||
force_unix_path_separator = [] # Deprecated | ||
const-generics = [] | ||
scale_info = ["scale-info/derive"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["i128", "const-generics"] | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
features = ["i128", "const-generics"] | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[package.metadata.playground] | ||
features = ["i128", "const-generics"] | ||
features = ["i128", "const-generics"] |
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