add cargo library and namesit on nokhwa

This commit is contained in:
l1npengtul
2021-05-17 16:00:21 +09:00
parent 6a14a592ca
commit e8900bad87
4 changed files with 20 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/target
Cargo.lock
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "nokhwa"
version = "0.1.0"
authors = ["l1npengtul <l1npengtul@protonmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+2
View File
@@ -1,4 +1,6 @@
# nokhwa
Nokhwa(녹화): Korean word meaning "to record".
This crate is in **active development**! It is not functional yet!
Cross Platform Rust Library for powerful Webcam Capture and Virtual Webcams
+7
View File
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}