quartz-cli 0.1.3

The way to design and test Rest APIs through the command-line
[package]
name = "quartz-cli"
description = "The way to design and test Rest APIs through the command-line"
version = "0.1.3"
edition = "2021"
author = ["Eduardo Rodrigues <contato@edurodrigues.dev>"]
license = "GPL-3.0"
repository = "https://github.com/EduardoRodriguesF/quartz"
homepage = "https://github.com/EduardoRodriguesF/quartz"
keywords = ["cli", "api", "http-client", "curl"]
categories = ["command-line-utilities"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
clap = { version = "4.2.7", features = ["derive"] }
serde = { version = "1.0.163", features = ["derive"] }
toml = "0.7.3"
colored = "2.0.0"

[[bin]]
name = "quartz"
path = "src/main.rs"