-
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
in progress v4l2 implementation, mostly stable core
- Loading branch information
1 parent
f0ffb0e
commit 33f0787
Showing
26 changed files
with
1,267 additions
and
1,309 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
[package] | ||
name = "nokhwa-bindings-linux" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/l1npengtul/nokhwa" | ||
description = "The V4L2 bindings crate for `nokhwa`" | ||
keywords = ["v4l", "v4l2", "linux", "capture", "webcam"] | ||
description = "The Linux V4L2 bindings crate for `nokhwa`" | ||
keywords = ["v4l", "v4l2", "linux", "nokhwa", "webcam"] | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[features] | ||
v4l2 = ["v4l", "v4l2-sys-mit"] | ||
pw = ["pipewire"] | ||
|
||
[dependencies] | ||
v4l = { version = "0.14", features = ["v4l2"], optional = true } | ||
v4l2-sys-mit = { version = "0.3", optional = true } | ||
|
||
[dependencies.pipewire] | ||
version = "0.8" | ||
optional = true | ||
|
||
[dependencies.nokhwa-core] | ||
version = "0.2" | ||
path = "../nokhwa-core" | ||
|
||
[target.'cfg(target_os="linux")'.dependencies] | ||
v4l = { version = "0.14", optional = true } | ||
v4l2-sys-mit = { version = "0.3", optional = true } |
Oops, something went wrong.