-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.06 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
33
34
35
36
37
[workspace]
members = [
"rrm_installer",
"rrm_locals",
"rrm_scrap",
"rrm_xml"
]
[package]
name = "rrm"
version = "0.0.1-alpha.9"
edition = "2021"
authors = ["AOx0 <[email protected]>"]
description = "Rusty RimWorld (mod) Manager is a cross-platform CLI mod manager written in Rust"
readme = "README.md"
repository = "https://github.com/AOx0/rrm"
homepage = "https://github.com/AOx0/rrm"
categories = ["command-line-utilities"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
execute = "0.2.11"
async-recursion = "1.0.0"
clap = { version= "3.2.5", default-features = false, features=["env", "derive", "unicode", "suggestions", "std"] }
tokio = { version = "1.19.2", default-features = false, features = ["full"] }
fs_extra = "1.2.0"
regex = "1.5.6"
rrm_locals = {path="rrm_locals", version="0.0.1-alpha.8"}
rrm_scrap = {path="rrm_scrap", version="0.0.1-alpha.7"}
rrm_installer = { path="rrm_installer", version="0.0.1-alpha.7"}
colored = "2.0.0"
text_io = "0.1.10"
notify = "4.0.17"