1
0
Fork 0

Initialize Cargo package

This commit is contained in:
Alex Kotov 2020-10-17 02:22:30 +05:00
parent 8dcf5261b1
commit 8d8bae8b76
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 20 additions and 0 deletions

1
contrib/rocket_csrf/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

5
contrib/rocket_csrf/Cargo.lock generated Normal file
View File

@ -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"

View File

@ -0,0 +1,7 @@
[package]
name = "rocket_csrf"
version = "0.0.0"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2018"
[dependencies]

View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}