[package]
edition = "2018"
name = "type-leak"
version = "0.6.0"
authors = ["Yasuo Ozu <yasuo@ozu.email>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Enable sharing type context beyond crate boundary"
readme = "README.md"
keywords = [
"macros",
"syn",
"typesystem",
"typeleak",
]
categories = [
"development-tools::procedural-macro-helpers",
"no-std::no-alloc",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/yasuo-ozu/type-leak"
[lib]
name = "type_leak"
path = "lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.gotgraph]
version = "0.2.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"derive",
"printing",
"extra-traits",
"fold",
"visit",
"visit-mut",
]
[dependencies.template-quote]
version = "0.4"