From f1903133edefa480667600372b4b5528c06035f2 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 4 Apr 2017 14:44:20 -0600 Subject: [PATCH] Rename "groth" to "groth16". --- src/{groth => groth16}/domain.rs | 0 src/{groth => groth16}/mod.rs | 0 src/{groth => groth16}/tests/mod.rs | 0 src/lib.rs | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename src/{groth => groth16}/domain.rs (100%) rename src/{groth => groth16}/mod.rs (100%) rename src/{groth => groth16}/tests/mod.rs (100%) diff --git a/src/groth/domain.rs b/src/groth16/domain.rs similarity index 100% rename from src/groth/domain.rs rename to src/groth16/domain.rs diff --git a/src/groth/mod.rs b/src/groth16/mod.rs similarity index 100% rename from src/groth/mod.rs rename to src/groth16/mod.rs diff --git a/src/groth/tests/mod.rs b/src/groth16/tests/mod.rs similarity index 100% rename from src/groth/tests/mod.rs rename to src/groth16/tests/mod.rs diff --git a/src/lib.rs b/src/lib.rs index 691e1bf..d47ee55 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ extern crate byteorder; extern crate serde; pub mod curves; -pub mod groth; +pub mod groth16; use std::collections::HashMap; use std::ops;