mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
new powdr crate
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
resolver = "2"
|
||||
|
||||
members = [
|
||||
"powdr",
|
||||
"number",
|
||||
"parser",
|
||||
"powdr_cli",
|
||||
|
||||
13
powdr/Cargo.toml
Normal file
13
powdr/Cargo.toml
Normal 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
5
powdr/src/lib.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
pub use executor;
|
||||
pub use number;
|
||||
pub use pipeline;
|
||||
pub use riscv;
|
||||
pub use riscv_executor;
|
||||
Reference in New Issue
Block a user