[lib] # Tell Cargo and Rust compilers that your crate contains custom process macros proc-macro = true [package] name = "parse_api" version = "0.1.1" edition = "2021" description= "A tool to parse api" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # set features = ["full"] makes it available to use ItemFn syn = { version = "2.0.29", features = ["full"] } quote = "1.0"