From 6d923548065ca0454d10a9d915ea3eab5f108e3f Mon Sep 17 00:00:00 2001 From: Pedro Fontana Date: Fri, 20 Oct 2023 18:46:40 -0300 Subject: [PATCH] Remove crates/stark-curve --- crates/stark-curve/Cargo.toml | 18 ------------------ crates/stark-curve/README.md | 0 crates/starknet-types-core/Cargo.toml | 2 +- 3 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 crates/stark-curve/Cargo.toml delete mode 100644 crates/stark-curve/README.md diff --git a/crates/stark-curve/Cargo.toml b/crates/stark-curve/Cargo.toml deleted file mode 100644 index d9f6226..0000000 --- a/crates/stark-curve/Cargo.toml +++ /dev/null @@ -1,18 +0,0 @@ -[package] -name = "stark-curve" -version = "0.0.3" -edition = "2021" -license = "MIT" -homepage = "https://github.com/starknet-io/types-rs" -repository = "https://github.com/starknet-io/types-rs" -categories = ["types", "math", "crypto"] -keywords = ["stark", "zkp", "cairo"] -description = "A stark curve type for Cairo." -readme = "README.md" - -[dependencies] -lambdaworks-math = { git = "https://github.com/Lambdaclass/lambdaworks.git" ,rev = "340045b631e7465cc66cc9140dff9c2d41b7839f", default_features = false } -num-traits = { version = "0.2.16", default-features = false } - -stark-felt = {path = "../stark-felt"} - diff --git a/crates/stark-curve/README.md b/crates/stark-curve/README.md deleted file mode 100644 index e69de29..0000000 diff --git a/crates/starknet-types-core/Cargo.toml b/crates/starknet-types-core/Cargo.toml index 073e822..2e6de2d 100644 --- a/crates/starknet-types-core/Cargo.toml +++ b/crates/starknet-types-core/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] bitvec = { version = "1.0.1", default-features = false } serde = { version = "1.0.163", optional = true, default-features = false } -lambdaworks-math = { path = "../../../lambdaworks/math", default-features = false} +lambdaworks-math = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "dfc97a6c520f01ff9a0d5d15a824ebe7afafd211", default-features = false} arbitrary = { version = "1.3.0", optional = true, default-features = false }