[package]
edition = "2021"
rust-version = "1.76.0"
name = "breaking-attr"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An attribute macro that enforces per-version invariants on items."
homepage = "https://github.com/Waridley/breaking-attr"
readme = "README.md"
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Waridley/breaking-attr"
[package.metadata."docs.rs"]
all-features = true
[features]
default = ["blake3"]
print_token_stream = []
[lib]
name = "breaking_attr"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.base64]
version = "0.21.7"
[dependencies.blake3]
version = "1.6.1"
optional = true
[dependencies.md5]
version = "0.7.0"
optional = true
[dependencies.proc-macro2]
version = "1.0.94"
[dependencies.sha2]
version = "0.10.8"
optional = true
[dependencies.syn]
version = "2.0.100"