[package]
edition = "2021"
rust-version = "1.56.0"
name = "min-specialization"
version = "0.2.0"
authors = ["Yasuo Ozu <yasuo@ozu.email>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Experimental implementation of specialization"
homepage = "https://github.com/yasuo-ozu/min_specialization"
documentation = "https://docs.rs/min-specialization"
readme = "README.md"
keywords = [
"macros",
"zerocost",
"specialization",
"proc-macro",
"trait",
]
categories = [
"rust-patterns",
"development-tools",
"development-tools::procedural-macro-helpers",
"no-std",
"no-std::no-alloc",
]
license = "MIT"
repository = "https://github.com/yasuo-ozu/min_specialization"
[lib]
name = "min_specialization"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "audit_soundness"
path = "tests/audit_soundness.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "large"
path = "tests/large.rs"
[[test]]
name = "large2"
path = "tests/large2.rs"
[[test]]
name = "no_self_arg"
path = "tests/no_self_arg.rs"
[[test]]
name = "runtime_dispatch"
path = "tests/runtime_dispatch.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.derive-syn-parse]
version = "0.1.5"
[dependencies.proc-macro-error]
version = "1.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"derive",
"printing",
"extra-traits",
"visit-mut",
"visit",
]
[dependencies.template-quote]
version = "0.4"
[dev-dependencies.trybuild]
version = "1.0"