diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..313d6bd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "nokhwa" +version = "0.1.0" +authors = ["l1npengtul "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/README.md b/README.md index 3c1d857..e1235fb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +}