-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
44 lines (39 loc) · 964 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]
authors = ["C J Silverio <[email protected]>"]
description = "A minimal Souls-like HUD & hotkeys mod for Skyrim AE. SKSE plugin."
edition = "2021"
keywords = ["c++", "skyrim"]
license = "GPL-3.0"
name = "soulsy"
readme = "README.md"
rust-version = "1.71.1"
version = "0.16.10"
[lib]
crate-type = ["staticlib"]
[dependencies]
bincode = "2.0.0-rc.3"
chardet = "0.2.4"
cxx = { version = "1.0.120", features = ["c++20"] }
encoding-next = "0.3.0"
enumset = "1.1.3"
eyre = "0.6.9"
log = "0.4.20"
lru = "0.12.1"
once_cell = "1.18.0"
resvg = "0.41.0"
rust-ini = "0.21.0"
serde = { version = "1.0.193", features = ["derive"] }
simplelog = "0.12.1"
strfmt = "0.2.4"
strum = { version = "0.26.2", features = ["derive"] }
toml = "0.8.6"
[build-dependencies]
cxx-build = "1.0.111"
[dev-dependencies]
petname = { version = "1.1.3", default-features = false, features = [
"default_dictionary",
"std_rng",
] }
rand = "0.8.5"
[profile.release]
debug = true