[package]
edition = "2024"
rust-version = "1.96.0"
name = "nichlink-core"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Registry, transaction, contracts, grafts, and diagnostics for NichLink"
homepage = "https://github.com/Nichtigott/nichlink"
documentation = "https://docs.rs/nichlink-core"
readme = "README.md"
keywords = [
"registration",
"registry",
"dependency-injection",
"kernel",
"diagnostics",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/Nichtigott/nichlink"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
syntax = [
"dep:proc-macro2",
"dep:syn",
]
[lib]
name = "nichlink"
path = "src/lib.rs"
[[test]]
name = "nesting_budget"
path = "tests/nesting_budget.rs"
[[test]]
name = "ungated_authoring_data"
path = "tests/ungated_authoring_data.rs"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
optional = true
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
"visit",
]
optional = true
[dev-dependencies.sha2]
version = "0.10"