aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2026-01-22 23:14:08 +0100
committerFilip Wandzio <contact@philw.dev>2026-01-22 23:14:08 +0100
commit72ddd7b7704f2087a52c9c0552446682918c513b (patch)
treee5134f215ea82c1fc8eda17b34e426a7b1dfafc6 /Cargo.toml
downloaddml-72ddd7b7704f2087a52c9c0552446682918c513b.tar.gz
dml-72ddd7b7704f2087a52c9c0552446682918c513b.zip
Implement basic game files download logic
Implement core clap arguments Respect XDG_BASE_DIR Currently library extraction is broken because it assumes every instace has it's own library folder. This should be refactored so instances share libraries Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to '')
-rw-r--r--Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..9c0eb1b
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,22 @@
1[package]
2name = "dml"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7clap = { version = "4.5.54", features = ["derive"] }
8directories = "6.0.0"
9dotenvy = "0.15.7"
10env_logger = "0.11.8"
11futures-util = "0.3.31"
12indicatif = "0.18.3"
13log = "0.4.29"
14rayon = "1.11.0"
15reqwest = { version = "0.13.1", features = ["json", "stream"] }
16serde = { version = "1.0.228", features = ["derive"] }
17serde_json = "1.0.149"
18sha1 = "0.10.6"
19tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
20toml = "0.9.11"
21uuid = { version = "1.19.0", features = ["v4"] }
22zip = "7.2.0"