26 lines
907 B
TOML
26 lines
907 B
TOML
|
|
[package]
|
||
|
|
name = "proc_static_assertions"
|
||
|
|
version = "0.0.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/proc_static_assertions/"
|
||
|
|
categories = ["no-std", "rust-patterns", "development-tools::testing"]
|
||
|
|
keywords = ["assert", "static", "testing"]
|
||
|
|
description = "Compile-time assertions via procedural macros."
|
||
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "CHANGELOG.md", "LICENSE*"]
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
proc-macro = true
|
||
|
|
|
||
|
|
[badges]
|
||
|
|
travis-ci = { repository = "nvzqz/static-assertions-rs" }
|
||
|
|
is-it-maintained-open-issues = { repository = "nvzqz/static-assertions-rs" }
|
||
|
|
is-it-maintained-issue-resolution = { repository = "nvzqz/static-assertions-rs" }
|
||
|
|
maintenance = { status = "passively-maintained" }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
nightly = []
|