summaryrefslogtreecommitdiffstats
path: root/main/Cargo.toml
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-12-28 00:45:12 +0100
committerFilip Wandzio <contact@philw.dev>2025-12-28 00:45:12 +0100
commit7995282f65183b0a615c224a3ea13eeb10a1e828 (patch)
tree84705b645f3cc799b8d6cf8af55b67dbc045e82a /main/Cargo.toml
downloadpdat-7995282f65183b0a615c224a3ea13eeb10a1e828.tar.gz
pdat-7995282f65183b0a615c224a3ea13eeb10a1e828.zip
Kind of Initial CommentHEADmaster
Implement basic way of testing various http methods via simple cli interface. Also write basic config file kind of parser.
Diffstat (limited to '')
-rw-r--r--main/Cargo.toml15
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]
2name = "pdat"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7clap = {version = "4.5.48", features = ["derive"] }
8colored = "3.0.0"
9reqwest = {version = "0.12.23", features = ["json"] }
10serde_json = {version = "1.0.145"}
11tokio = {version = "1.47.1", features = ["full"]}
12toml = "0.9.7"
13
14
15config = { path = "../config" }