-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.05 KB
/
Cargo.toml
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
[package]
name = "mod_installer"
version = "9.0.1"
edition = "2021"
authors = [ "dark0dave" ]
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-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/dark0dave/mod_installer"
categories = [ "command-line-interface", "filesystem" ]
keywords = [
"cli",
"infinity-engine",
"modding-tools",
"terminal",
"tool"
]
[dependencies]
confy = "^0.6"
clap = { version = "^4.5.9", features = ["derive", "env"] }
env_logger = "^0.11.1"
fs_extra = "^1.3.0"
log = "^0.4.22"
serde = { version = "^1.0.152", features = ["derive"] }
serde_derive = "^1.0.152"
walkdir = "^2.3.2"
[dev-dependencies]
pretty_assertions = "^1.4.1"