[package] name = "project_toml_parser" version = "0.1.1" categories = ["command-line-utilities"] description = "A command-line utility that returns the project details configured in TOML file." repository = "https://github.com/StephanMalan/project_toml_parser" license = "MIT" authors = ["Stephan Malan "] edition = "2021" include = ["**/*.rs", "Cargo.toml", "LICSENSE", "README.md"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = {version = "4.1.4", features = [ "derive" ]} serde = {version = "1.0.152", features = [ "derive" ]} serde_json = "1.0.96" strfmt = "0.2.4" toml = "0.7.1" [[bin]] name = "ptp" path = "src/main.rs"