-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 926 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
38
39
[package]
name = "windows-audio-control"
version = "0.1.0"
edition = "2021"
[package.metadata.maturin]
name = 'windows_audio_control._native'
python-source = "python"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "_native"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.17", features = ["extension-module", "anyhow"] }
pyo3-asyncio = { version = "0.17", features = ["async-std-runtime"] }
pyo3-log = "0.7"
async-std = "1.12"
log = "0.4"
anyhow = "1.0"
thiserror = "1.0"
num_enum = "0.5.7"
bitflags = "2.0.0-rc.1"
[dependencies.windows]
version = "0.43"
features = [
"Win32_Foundation",
"Win32_Media_Audio",
"Win32_Media_Audio_Endpoints",
"Win32_Devices_FunctionDiscovery",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_UI_Shell_PropertiesSystem",
"Win32_System_Search_Common",
"implement",
"interface",
]