diff --git a/Cargo.toml b/Cargo.toml index c4795796b..95e575af2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ resolver = "2" members = [ + "powdr", "number", "parser", "powdr_cli", diff --git a/powdr/Cargo.toml b/powdr/Cargo.toml new file mode 100644 index 000000000..fa5bd2ba7 --- /dev/null +++ b/powdr/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "powdr" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +executor = { path = "../executor" } +number = { path = "../number" } +pipeline = { path = "../pipeline" } +riscv = { path = "../riscv" } +riscv_executor = { path = "../riscv_executor" } diff --git a/powdr/src/lib.rs b/powdr/src/lib.rs new file mode 100644 index 000000000..d62b7dbcb --- /dev/null +++ b/powdr/src/lib.rs @@ -0,0 +1,5 @@ +pub use executor; +pub use number; +pub use pipeline; +pub use riscv; +pub use riscv_executor;