From e4ad766315879e1ff05bb111229f073f8f0ed68e Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Mon, 10 Oct 2022 21:30:02 +0200 Subject: PassFish: Initial Commit Well, that's a lie. But nobody needs to see all the iterations I decided to sweep under the rug. That said, I think the repo is, while not clean, clean enough now, to not be embarrassed by uploading it to github. --- rust/src/lib.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rust/src/lib.rs (limited to 'rust/src/lib.rs') diff --git a/rust/src/lib.rs b/rust/src/lib.rs new file mode 100644 index 0000000..abdb917 --- /dev/null +++ b/rust/src/lib.rs @@ -0,0 +1,12 @@ +extern crate libc; +extern crate serde; +extern crate dirs; +extern crate mockall_double; + +#[cfg(test)] +extern crate mockall; + +#[allow(clippy::all)] +pub mod interface; +#[warn(clippy::pedantic)] +mod implementation; -- cgit v1.2.3