diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-12-28 00:45:12 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-12-28 00:45:12 +0100 |
| commit | 7995282f65183b0a615c224a3ea13eeb10a1e828 (patch) | |
| tree | 84705b645f3cc799b8d6cf8af55b67dbc045e82a /main/Cargo.toml | |
| download | pdat-master.tar.gz pdat-master.zip | |
Implement basic way of testing various http methods via simple cli interface. Also write basic config file kind of parser.
Diffstat (limited to 'main/Cargo.toml')
| -rw-r--r-- | main/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/main/Cargo.toml b/main/Cargo.toml new file mode 100644 index 0000000..e91ddbf --- /dev/null +++ b/main/Cargo.toml | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | [package] | ||
| 2 | name = "pdat" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
| 7 | clap = {version = "4.5.48", features = ["derive"] } | ||
| 8 | colored = "3.0.0" | ||
| 9 | reqwest = {version = "0.12.23", features = ["json"] } | ||
| 10 | serde_json = {version = "1.0.145"} | ||
| 11 | tokio = {version = "1.47.1", features = ["full"]} | ||
| 12 | toml = "0.9.7" | ||
| 13 | |||
| 14 | |||
| 15 | config = { path = "../config" } | ||
