Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]

members = [
"algebra",
"math",
"crypto",
]
14 changes: 0 additions & 14 deletions algebra/src/lib.rs

This file was deleted.

1 change: 0 additions & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = "0.8.5"
7 changes: 0 additions & 7 deletions crypto/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
pub mod cyclic_group;
pub mod elliptic_curve;
pub mod field_element;
pub mod field_extension_element;
pub mod msm;
pub mod polynomial;
pub mod config;
3 changes: 2 additions & 1 deletion algebra/Cargo.toml → math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "lambdaworks-algebra"
name = "lambdaworks-math"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = "0.8.5"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions math/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pub mod cyclic_group;
pub mod elliptic_curve;
pub mod field_element;
pub mod field_extension_element;
pub mod msm;
pub mod polynomial;
pub mod config;
File renamed without changes.
File renamed without changes.