summaryrefslogtreecommitdiffstats
path: root/config/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 /config/Cargo.toml
downloadpdat-master.tar.gz
pdat-master.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--config/Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/Cargo.toml b/config/Cargo.toml
new file mode 100644
index 0000000..b7a0be1
--- /dev/null
+++ b/config/Cargo.toml
@@ -0,0 +1,8 @@
1[package]
2name = "config"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7toml = "0.7"
8serde = { version = "1.0", features = ["derive"] }