-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 934 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
[package]
name = "arcdps_squad_manager"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
log = "0.4"
flexi_logger = { version = "0.19", default_features = false, features = ["async", "compress"] }
backtrace = "0.3"
arcdps = { git = "https://github.com/Krappa322/arcdps_bindings.git", default-features = false } # `default-features = false` turns off logging through arcdps log
winapi = { version = "0.3", features = ["consoleapi", "dbghelp", "memoryapi", "psapi"] }
time = { version = "0.3", features = ["formatting", "macros"] }
static_init = "1.0"
ureq = { version = "2.4", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
version-compare = "0.1"
chrono = "0.4.19"
[dev-dependencies]
more-asserts = "0.2"
rstest = "0.12"
[build-dependencies]
winres = "0.1"