We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit d2045ffCopy full SHA for d2045ff
.gitignore
@@ -0,0 +1,2 @@
1
+/target
2
+Cargo.lock
Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "poseidon377"
3
+version = "0.1.0"
4
+edition = "2018"
5
+authors = ["Penumbra <[email protected]>"]
6
+description = "An instantiation of the Poseidon hash for use with BLS12-377."
7
+license = "MIT OR Apache-2.0"
8
+
9
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
10
11
+[dependencies]
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments