-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 845 Bytes
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
[package]
name = "owmods_cli"
authors = ["Bwc9876 <bwc9876@outerwildsmods.com>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.15.4"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/ow-mods/ow-mod-man/"
license = "GPL-3.0-or-later"
[dependencies]
owmods_core = { version = "0.15.4", path = "../owmods_core" }
clap = { version = "4.5.54", features = ["derive"] }
colored = "3.0.0"
anyhow = "1.0.100"
indicatif = { version = "0.18.3", features = ["improved_unicode"] }
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
log = { version = "0.4.29", features = ["std"] }
clap_complete = "4.5.64"
serde_json = "1.0.149"
[build-dependencies]
clap = { version = "4.5.54", features = ["derive"] }
clap_complete = "4.5.64"
clap_mangen = "0.2.31"
[[bin]]
name = "owmods"
path = "src/main.rs"