postwoman/Cargo.toml
alemi fe7bc43c57
feat: starting from scratch
lets start over: simple api testing tool configured with toml files
2024-10-19 03:28:16 +02:00

18 lines
553 B
TOML

[package]
name = "postwoman"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
http = "1.1.0"
regex = "1.11"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0.64"
tokio = { version = "1.40", features = ["full"] }
toml = "0.8"
toml_edit = { version = "0.22", features = ["serde"] } # only to pretty print tables ...