-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
43 lines (40 loc) · 1.14 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
[package]
name = "sbz-switch"
version = "4.1.0"
authors = ["Matthew Donoughe <[email protected]>"]
description = "Utility for changing Sound Blaster parameters on Windows"
repository = "https://github.com/mdonoughe/sbz-switch/"
readme = "README.md"
keywords = ["windows", "sound"]
categories = ["command-line-utilities", "multimedia::audio"]
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.61"
[dependencies]
clap = { version = "3", features = ["cargo"] }
futures = "0.3"
indexmap = "1"
regex = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
serde_yaml = "0.8"
tracing = { version = "0.1", features = ["max_level_trace", "release_max_level_info"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
toml = "0.5"
[dependencies.windows]
version = "0.43.0"
features = [
"implement",
"interface",
"Win32_Foundation",
"Win32_Media_Audio_Endpoints",
"Win32_Security",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_UI_Shell_PropertiesSystem",
]
[package.metadata.docs.rs]
default-target = "i686-pc-windows-msvc"