1[package] 2name = "tinyjson" 3version = "2.5.1" 4edition = "2018" 5authors = ["rhysd <lin90162@yahoo.co.jp>"] 6description = "Tiny simple JSON parser/generator" 7license = "MIT" 8readme = "README.md" 9homepage = "https://github.com/rhysd/tinyjson" 10repository = "https://github.com/rhysd/tinyjson" 11keywords = ["json", "parser", "generator"] 12categories = ["encoding", "parsing"] 13 14include = [ 15 "Cargo.toml", 16 "README.md", 17 "LICENSE.txt", 18 "src/*.rs", 19] 20 21[badges] 22maintenance = { status = "passively-maintained" } 23 24[dependencies] 25 26[dev-dependencies] 27walkdir = "2" 28 29[workspace] 30members = ["bench"] 31