diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-22 23:14:08 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-22 23:14:08 +0100 |
| commit | 72ddd7b7704f2087a52c9c0552446682918c513b (patch) | |
| tree | e5134f215ea82c1fc8eda17b34e426a7b1dfafc6 /Cargo.toml | |
| download | dml-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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
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] | ||
| 2 | name = "dml" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
| 7 | clap = { version = "4.5.54", features = ["derive"] } | ||
| 8 | directories = "6.0.0" | ||
| 9 | dotenvy = "0.15.7" | ||
| 10 | env_logger = "0.11.8" | ||
| 11 | futures-util = "0.3.31" | ||
| 12 | indicatif = "0.18.3" | ||
| 13 | log = "0.4.29" | ||
| 14 | rayon = "1.11.0" | ||
| 15 | reqwest = { version = "0.13.1", features = ["json", "stream"] } | ||
| 16 | serde = { version = "1.0.228", features = ["derive"] } | ||
| 17 | serde_json = "1.0.149" | ||
| 18 | sha1 = "0.10.6" | ||
| 19 | tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] } | ||
| 20 | toml = "0.9.11" | ||
| 21 | uuid = { version = "1.19.0", features = ["v4"] } | ||
| 22 | zip = "7.2.0" | ||
