Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore!: remove ec module from stdlib #6612

Merged
merged 4 commits into from
Nov 26, 2024
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
6 changes: 2 additions & 4 deletions docs/docs/noir/modules_packages_crates/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,10 @@ use std::hash::sha256;
use std::scalar_mul::fixed_base_embedded_curve;
```

Lastly, as demonstrated in the
[elliptic curve example](../standard_library/cryptographic_primitives/ec_primitives.md#examples), you
can import multiple items in the same line by enclosing them in curly braces:
Lastly, You can import multiple items in the same line by enclosing them in curly braces:

```rust
use std::ec::tecurve::affine::{Curve, Point};
use std::hash::{keccak256, sha256};
```

We don't have a way to consume libraries from inside a [workspace](./workspaces.md) as external dependencies right now.
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion noir_stdlib/src/ec/consts/mod.nr

This file was deleted.

33 changes: 0 additions & 33 deletions noir_stdlib/src/ec/consts/te.nr

This file was deleted.

199 changes: 0 additions & 199 deletions noir_stdlib/src/ec/mod.nr

This file was deleted.

Loading