-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
44 lines (37 loc) · 1.01 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
38
39
40
41
42
43
44
[package]
name = "libloadorder"
version = "18.1.3"
authors = ["Oliver Hamlet <[email protected]>"]
description = "A cross-platform library for manipulating the load order and active status of plugins for the Elder Scrolls and Fallout games."
documentation = "https://docs.rs/libloadorder"
repository = "https://github.com/Ortham/libloadorder.git"
readme = "README.md"
categories = ["games", "parsing"]
license = "GPL-3.0"
edition = "2021"
exclude = [
"target/*",
]
[badges]
coveralls = { repository = "Ortham/libloadorder" }
[dependencies]
encoding_rs = "0.8"
esplugin = "6.1.1"
regex = "1.11.1"
unicase = "2.8.0"
rayon = "1.0.0"
rust-ini = { version = "0.21.1", features = ["case-insensitive"] }
keyvalues-parser = "0.2.0"
[target.'cfg(windows)'.dependencies]
dirs = "5.0"
windows = { version = "0.58.0", features = ["Foundation_Collections", "System_UserProfile"] }
[dev-dependencies]
criterion = "0.5.1"
tempfile = "3.14.0"
[lib]
name = "loadorder"
[workspace]
members = ["ffi"]
[[bench]]
name = "load_order"
harness = false