29 lines
816 B
TOML
29 lines
816 B
TOML
[package]
|
|
name = "static_assertions"
|
|
version = "1.1.0"
|
|
authors = ["Nikolai Vazquez"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/nvzqz/static-assertions-rs"
|
|
repository = "https://github.com/nvzqz/static-assertions-rs"
|
|
documentation = "https://docs.rs/static_assertions/"
|
|
categories = ["no-std", "rust-patterns", "development-tools::testing"]
|
|
keywords = ["assert", "static", "testing"]
|
|
description = "Compile-time assertions to ensure that invariants are met."
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "CHANGELOG.md", "LICENSE*"]
|
|
|
|
[dependencies.proc_static_assertions]
|
|
version = "0.0.0"
|
|
path = "proc"
|
|
optional = true
|
|
|
|
[workspace]
|
|
members = ["proc"]
|
|
|
|
[features]
|
|
nightly = []
|
|
proc = ["proc_static_assertions"]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-maintained" }
|