[package] name = "compile-ints" version = "0.1.0" authors = ["Mariell Hoversholm "] edition = "2015" # compatible with rather old versions description = "Compile-time integers created through macros." repository = "https://github.com/Proximyst/compile-ints" readme = "README.md" keywords = ["macro", "proc-macro", "ints", "compile-time"] license = "BSD-3-Clause" [dependencies] proc-macro2 = "~0.4" syn = { version = "~0.15", default-features = false, features = ["parsing", "proc-macro"] } quote = "~0.6" # Optional crates make features with the same name. # Given `rand` as a feature, this is enabled and so is `rand!` from the crate. rand = { version = "~0.6", optional = true } [lib] proc-macro = true