[package] name = "barb" version = "0.4.3" edition = "2021" license = "GPL-3.0-or-later" description = "Command-line tool to perform file-based HTTP(s) requests." repository = "https://gitlab.com/guillaume54/barb" readme = "README.md" keywords = ["http","request","postman","rest","api"] categories = ["command-line-utilities","network-programming","web-programming"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ureq = { version = "2.3.1", features = ["json"] } clap = { version = "3.0.14", features = ["derive"] } jq-rs = { version = "0.4", optional = true } serde = "1.0.130" serde_json = "1.0" jsonformat = "1.2" colored = "2.0" colored_json = "2.1" dotenv = "0.15.0" regex = "1.5" jsonpath-rust = "0.1" [features] default = [] jq = ["jq-rs"]