diff --git a/contrib/rocket_csrf/.gitignore b/contrib/rocket_csrf/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/contrib/rocket_csrf/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/contrib/rocket_csrf/Cargo.lock b/contrib/rocket_csrf/Cargo.lock new file mode 100644 index 0000000..36935b5 --- /dev/null +++ b/contrib/rocket_csrf/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "rocket_csrf" +version = "0.0.0" diff --git a/contrib/rocket_csrf/Cargo.toml b/contrib/rocket_csrf/Cargo.toml new file mode 100644 index 0000000..c1726a5 --- /dev/null +++ b/contrib/rocket_csrf/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "rocket_csrf" +version = "0.0.0" +authors = ["Alex Kotov "] +edition = "2018" + +[dependencies] diff --git a/contrib/rocket_csrf/src/lib.rs b/contrib/rocket_csrf/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/contrib/rocket_csrf/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +}