[package] name = "stringid" version = "0.1.0" edition = "2021" rust-version = "1.72" license = "LGPL-3.0-only" repository = "https://framagit.org/gwenlg/stringid" authors = ["Gwen Lg "] description = "Lightweight system to manage identifier as human readable string and unique number." keywords = ["gamedev", "editor"] categories = ["data-structures", "game-development", "game-engines"] readme = "../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["macros"] macros = ["dep:stringid_macros"] [dependencies] cityhasher = "0.1" once_cell = "1.18" stringid_macros = { version = "0.1", path= "../stringid_macros", optional = true } [[example]] name = "resources_name" required-features = ["macros"]