[package]
edition = "2021"
name = "prototext"
version = "0.1.3"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lossless protobuf ↔ enhanced-textproto converter"
readme = "README.md"
keywords = [
"protobuf",
"proto",
"textproto",
"cli",
]
categories = [
"command-line-utilities",
"encoding",
]
license = "MIT"
repository = "https://github.com/douzebis/prototools"
[package.metadata.docs.rs]
targets = []
[[bin]]
name = "prototext"
path = "src/main.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
features = ["unstable-dynamic"]
[dependencies.globset]
version = "0.4"
[dependencies.prost]
version = "0.13"
[dependencies.prost-types]
version = "0.13"
[dependencies.prototext-core]
version = "0.1.1"
[dependencies.walkdir]
version = "2"
[dev-dependencies.toml]
version = "0.8"
[build-dependencies.prost]
version = "0.14"
[build-dependencies.protox]
version = "0.9"