new powdr crate

This commit is contained in:
Leo Alt
2023-12-24 06:36:04 +01:00
parent 16d3151654
commit 33267959bb
3 changed files with 19 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
resolver = "2"
members = [
"powdr",
"number",
"parser",
"powdr_cli",

13
powdr/Cargo.toml Normal file
View File

@@ -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" }

5
powdr/src/lib.rs Normal file
View File

@@ -0,0 +1,5 @@
pub use executor;
pub use number;
pub use pipeline;
pub use riscv;
pub use riscv_executor;