-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
44 lines (37 loc) · 830 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
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "armake2"
version = "0.3.0"
description = "Arma 3 modding tools"
license = "GPL-2.0-or-later"
categories = ["command-line-utilities"]
authors = ["KoffeinFlummi <[email protected]>"]
homepage = "https://github.com/KoffeinFlummi/armake2"
repository = "https://github.com/KoffeinFlummi/armake2"
build = "build.rs"
readme = "README.md"
edition = "2018"
[lib]
name = "armake2"
[[bench]]
name = "preprocess"
harness = false
[[bench]]
name = "config"
harness = false
[dependencies]
colored = "1.6"
time = "0.1"
byteorder = "1"
docopt = "1"
serde = { version = "1.0", features = ["derive"] }
openssl = "0.10"
linked-hash-map = "0.5"
regex = "1"
[target.'cfg(windows)'.dependencies]
ansi_term = "0.11"
winreg = "0.6.0"
[build-dependencies]
peg = "0.5"
[dev-dependencies]
tempfile = "3"
criterion = "0.2"