[package]
edition = "2021"
name = "fixed-type-id-macros"
version = "0.2.0"
authors = ["cupofc0t <cupofc0t@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Make your types have a fixed type id&stable type name with version support between different builds."
homepage = "https://github.com/c00t/fixed-type-id"
readme = false
keywords = [
"typeid",
"type-id",
"reflection",
]
categories = []
license = "MIT"
repository = "https://github.com/c00t/fixed-type-id"
[features]
erase_name = []
[lib]
name = "fixed_type_id_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
features = ["nightly"]
[dependencies.quote]
version = "1.0.21"
[dependencies.rand]
version = "0.8.5"
[dependencies.rapidhash]
version = "1.1.0"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dev-dependencies]