Skip to content

Commit

Permalink
add some aliases to powdr crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Alt committed Jan 24, 2024
1 parent 8c0c4b8 commit 62d8bb2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions powdr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-backend = { path = "../backend" }
powdr-executor = { path = "../executor" }
powdr-number = { path = "../number" }
powdr-pipeline = { path = "../pipeline" }
Expand Down
17 changes: 12 additions & 5 deletions powdr/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
pub use powdr_executor;
pub use powdr_number;
pub use powdr_pipeline;
pub use powdr_riscv;
pub use powdr_riscv_executor;
pub use powdr_backend as backend;
pub use powdr_executor as executor;
pub use powdr_number as number;
pub use powdr_pipeline as pipeline;
pub use powdr_riscv as riscv;
pub use powdr_riscv_executor as riscv_executor;

pub use powdr_pipeline::Pipeline;

pub use powdr_number::Bn254Field;
pub use powdr_number::FieldElement;
pub use powdr_number::GoldilocksField;

0 comments on commit 62d8bb2

Please sign in to comment.