[package] name = "hj" version = "0.1.0" edition = "2021" description = "Command line tool to convert HTTP/1-style text into JSON" repository = "https://github.com/gfx/hj" categories = ["command-line-utilities"] license-file = "LICENSE" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "3", features = ["derive"] } tinyjson = { version = "2" } regex = { version = "1", default-features = false, features = ["std"] } lazy_static = { version = "1"} scopeguard = { version = "1" } [dev-dependencies] assert_cmd = { version = "2.0" } predicates = { version = "2.1" } serde_json = { version = "1" } serde = { version = "1", features = ["derive"] }