2023-05-21 18:35:42 +02:00
|
|
|
[package]
|
|
|
|
name = "postwoman"
|
2023-06-21 18:25:26 +02:00
|
|
|
version = "0.2.0"
|
2023-05-21 18:35:42 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-21 00:24:12 +02:00
|
|
|
async-recursion = "1.0.4"
|
2023-05-21 18:35:42 +02:00
|
|
|
clap = { version = "4.3.0", features = ["derive"] }
|
2023-06-07 15:31:37 +02:00
|
|
|
postman_collection = "0.2.0"
|
2023-06-15 17:20:59 +02:00
|
|
|
regex = "1.8.4"
|
2023-05-21 18:35:42 +02:00
|
|
|
reqwest = { version = "0.11.18", features = ["json"] }
|
|
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
|
|
|
tokio = { version = "1.28.1", features = ["full"] }
|