-
-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathCargo.toml
24 lines (19 loc) · 812 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
[package]
name = "nokhwa-bindings-windows"
version = "0.4.0"
authors = ["l1npengtul"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/l1npengtul/nokhwa"
description = "The Windows Media Foundation bindings crate for `nokhwa`"
keywords = ["media-foundation", "windows", "capture", "webcam"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.nokhwa-core]
version = "0.2"
path = "../nokhwa-core"
[target.'cfg(target_os="windows")'.dependencies.windows]
version = "0.43"
features = ["Win32_Media_MediaFoundation", "Win32_System_Com", "Win32_Foundation", "Win32_Media_DirectShow", "Win32_Media", "Win32", "Win32_Media_KernelStreaming"]
[target.'cfg(target_os="windows")'.dependencies.once_cell]
version = "1.16"