-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
45 lines (41 loc) · 1.29 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
45
[package]
name = "wasapi"
version = "0.15.0"
edition = "2021"
rust-version = "1.59"
authors = ["HEnquist <henrik.enquist@gmail.com>"]
description = "Bindings for the Wasapi API on Windows"
license = "MIT"
repository = "https://github.com/HEnquist/wasapi-rs"
keywords = ["audio", "sound", "windows", "wasapi"]
categories = ["multimedia::audio", "os::windows-apis"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.windows]
version = "0.57"
features = ["Foundation",
"implement",
"Win32_Media_Audio",
"Win32_Foundation",
"Win32_Devices_FunctionDiscovery",
"Win32_Devices_Properties",
"Win32_UI_Shell_PropertiesSystem",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_Media_KernelStreaming",
"Win32_Media_Multimedia",
"Win32_System_Threading",
"Win32_System_Variant",
"Win32_Security",]
[dependencies]
widestring = "1.0.2"
log = "0.4.18"
num-integer = "0.1"
windows-core = "0.57"
[dev-dependencies]
simplelog = "0.12.1"
rand = "0.8.5"
sysinfo = "0.30.9"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]