[package] name = "tomlpipe" version = "0.3.0" authors = ["pollenJP "] edition = "2021" description = "CLI tool for editing a TOML file" repository = "https://github.com/pollenjp/tomlpipe" documentation = "https://docs.rs/tomlpipe" license = "MIT" crate-type = ["bin"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] path = "src/main.rs" name = "tomlpipe" bench = false [dependencies] anyhow = "1.0.72" clap = { version = "4.3.19", features = ["derive"] } toml_edit = "0.19.14"