diff options
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" } | ||
