Skip to content

Commit

Permalink
Merge pull request #942 from powdr-labs/powdr-aliases
Browse files Browse the repository at this point in the history
Add some aliases to powdr crate
  • Loading branch information
chriseth authored Jan 24, 2024
2 parents 8c0c4b8 + 62d8bb2 commit e0c90a8
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 e0c90a8

Please sign in to comment.