-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 833 Bytes
/
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 = "sourcemods-builder"
version = "1.0.0"
edition = "2021"
authors = ["laVashik <[email protected]>"]
description = "Sourcemod Builder is a utility designed to drastically simplify the process of building and distributing Source Engine mods"
readme = "README.md"
license = "MIT"
repository = "https://github.com/IaVashik/vmf-forge"
documentation = "https://docs.rs/vmf-forge"
keywords = ["vmf", "valve", "map", "parser", "source"]
categories = ["parser-implementations", "game-development"]
[workspace]
members = [
"gui"
]
[dependencies]
vmf-forge = "0.2.0"
vmdl = "0.2.0"
clap = { version = "4.5.27", features = ["derive"] }
walkdir = "2"
log = "0.4"
colored = "3.0.0"
fern = "0.7.0"
regex = "1.11.1"
thiserror = "2.0.11"
# [lints.rust]
# unused = { level = "allow", priority = -1 } # For exploratory dev.