diff --git a/Nargo.toml b/Nargo.toml index 8cfd677..2968c56 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -5,3 +5,4 @@ authors = [""] compiler_version = ">=0.37.0" [dependencies] +ec = { tag = "v0.1.2", git = "https://github.com/noir-lang/ec" } diff --git a/src/test.nr b/src/test.nr index 300f946..528f639 100644 --- a/src/test.nr +++ b/src/test.nr @@ -1,8 +1,8 @@ use crate::bjj::BabyJubJubParams; use crate::Curve; use crate::scalar_field::ScalarField; -use std::ec::consts::te::baby_jubjub; -use std::ec::tecurve::affine::Point as TEPoint; +use dep::ec::consts::te::baby_jubjub; +use ec::tecurve::affine::Point as TEPoint; type BabyJubJub = Curve;