diff --git a/mod.rs b/mod.rs index 924cf23..0d26299 100644 --- a/mod.rs +++ b/mod.rs @@ -1,11 +1,11 @@ pub mod error; -pub mod keygen; +pub mod poly; #[cfg(feature = "serialization-protobuf")] pub mod protobuf_impl; #[cfg(feature = "serialization-serde")] mod serde_impl; -use self::keygen::{Commitment, Poly}; +use self::poly::{Commitment, Poly}; use std::fmt; diff --git a/keygen.rs b/poly.rs similarity index 100% rename from keygen.rs rename to poly.rs