From 7995282f65183b0a615c224a3ea13eeb10a1e828 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Sun, 28 Dec 2025 00:45:12 +0100 Subject: Kind of Initial Comment Implement basic way of testing various http methods via simple cli interface. Also write basic config file kind of parser. --- main/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 main/Cargo.toml (limited to 'main/Cargo.toml') 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 @@ +[package] +name = "pdat" +version = "0.1.0" +edition = "2024" + +[dependencies] +clap = {version = "4.5.48", features = ["derive"] } +colored = "3.0.0" +reqwest = {version = "0.12.23", features = ["json"] } +serde_json = {version = "1.0.145"} +tokio = {version = "1.47.1", features = ["full"]} +toml = "0.9.7" + + +config = { path = "../config" } -- cgit v1.2.3