Browse Source

Initial commit of empty cargo

Ian Goldberg 5 years ago
commit
86643c7c22
3 changed files with 19 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 9 0
      Cargo.toml
  3. 7 0
      src/lib.rs

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+/target
+**/*.rs.bk
+Cargo.lock

+ 9 - 0
Cargo.toml

@@ -0,0 +1,9 @@
+[package]
+name = "vss"
+version = "0.1.0"
+authors = ["Ian Goldberg <iang@uwaterloo.ca>", "Chelsea H. Komlo <ckomlo@uwaterloo.ca>"]
+edition = "2018"
+
+[dependencies]
+
+curve25519_dalek = "1"

+ 7 - 0
src/lib.rs

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