-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
37 lines (31 loc) · 921 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
[package]
name = "more-auto-shoutouts"
version = "0.2.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[profile.release]
panic = "abort"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
mhw_toolkit = { path = "../mhw-toolkit" }
winapi = { version = "0.3", features = ["minwindef", "winnt"] }
once_cell = "1.20"
tokio = { version = "1.40", features = ["full"] }
snafu = "0.8"
log = { version = "0.4", features = ["serde"] }
rand = "0.8"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
minhook-sys = { version = "0.1", optional = true }
rodio = { version = "0.19", optional = true }
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
[features]
default = ["use_logger", "hooks"]
use_logger = ["mhw_toolkit/logger"]
hooks = ["minhook-sys"]
use_audio = ["rodio"]