From 72ddd7b7704f2087a52c9c0552446682918c513b Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 22 Jan 2026 23:14:08 +0100 Subject: 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 --- Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9c0eb1b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "dml" +version = "0.1.0" +edition = "2024" + +[dependencies] +clap = { version = "4.5.54", features = ["derive"] } +directories = "6.0.0" +dotenvy = "0.15.7" +env_logger = "0.11.8" +futures-util = "0.3.31" +indicatif = "0.18.3" +log = "0.4.29" +rayon = "1.11.0" +reqwest = { version = "0.13.1", features = ["json", "stream"] } +serde = { version = "1.0.228", features = ["derive"] } +serde_json = "1.0.149" +sha1 = "0.10.6" +tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] } +toml = "0.9.11" +uuid = { version = "1.19.0", features = ["v4"] } +zip = "7.2.0" -- cgit v1.2.3