-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "mod_installer"
version = "16.0.0"
authors = [ "dark0dave" ]
edition = "2024"
documentation = "https://raw.githubusercontent.com/dark0dave/mod_installer/main/README.md"
homepage = "https://github.com/dark0dave/mod_installer"
description = "The Infinity Engine Mod Installer is a tool designed to automate the installation of mods for Infinity Engine games such as Baldur's Gate, Icewind Dale, and Planescape: Torment. It uses a file called 'weidu.log' to determine which mods to install and how to install them."
license = "GPL-3.0"
readme = "readme.md"
repository = "https://github.com/dark0dave/mod_installer"
categories = [ "command-line-interface", "filesystem" ]
keywords = [
"cli",
"infinity-engine",
"modding-tools",
"terminal",
"tool"
]
[dependencies]
anstyle = "1.0.10"
clap = { version = "^4.5.49", features = ["derive", "env", "string"] }
confy = "^2.0.0"
env_logger = "^0.11.8"
log = "^0.4.22"
reqwest = {version = "^0.13.1", features = ["blocking"]}
serde = { version = "^1.0.217", features = ["derive"] }
serde_derive = "^1.0.152"
tempfile = "^3"
url = "2.5.4"
walkdir = "^2.3.2"
zip = "^8.0.0"
[dev-dependencies]
os_pipe = "^1.2.1"
pretty_assertions = "^1.4.1"
tempfile = "3"