blob: a1ecc6d8635d3a71deaf91bb897e0227f12d3738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "barb"
version = "0.1.0"
edition = "2018"
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"] }
serde = "*"
serde_json = "*"
jsonformat = "1.2.0"
|