[package]
edition = "2021"
name = "bobtail"
version = "0.3.0"
authors = ["Shane Celis <shane.celis@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Generate macro proxies of functions whose tails can be "bobbed" as in cut off'
readme = "README.md"
keywords = [
"optional-arguments",
"default-arguments",
"variadic",
"proc-macro",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/shanecelis/bobtail"
[features]
default = []
omit-token = ["bobtail_proc_macros/omit-token"]
[lib]
name = "bobtail"
path = "src/lib.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "tail_define"
path = "tests/tail_define.rs"
[[test]]
name = "test_macro_export"
path = "tests/test_macro_export.rs"
[[test]]
name = "test_trace_macro"
path = "tests/test_trace_macro.rs"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[[test]]
name = "version-numbers"
path = "tests/version-numbers.rs"
[dependencies.bobtail_proc_macros]
version = "0.3.0"
[dev-dependencies.proc-macro2]
version = "1"
[dev-dependencies.quote]
version = "1"
[dev-dependencies.trybuild]
version = "1"
[dev-dependencies.version-sync]
version = "0.9.5"