[package] name = "tomli" version = "0.1.1" description = "A simple CLI for quering and editing TOML files" authors = ["blinxen "] repository = "https://github.com/blinxen/tomli" readme = "README.md" license = "MIT" edition = "2021" include = [ "src/**/*.rs", "tests/**/*.rs", "Cargo.toml", "README.md", "CHANGELOG.md", "LICENSE", ] [[bin]] name = "tomli" path = "src/main.rs" [dependencies] clap = { version = "4", features = ["derive"] } thiserror = "1" toml_edit = "0.22"