Build RE baseline and initial Rust workspace
This commit is contained in:
parent
8d1f280e2e
commit
ffaf155ef0
39 changed files with 5974 additions and 8 deletions
22
Cargo.toml
22
Cargo.toml
|
|
@ -1,6 +1,18 @@
|
|||
[package]
|
||||
name = "rrt"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
[workspace]
|
||||
members = [
|
||||
"crates/rrt-model",
|
||||
"crates/rrt-cli",
|
||||
"crates/rrt-hook",
|
||||
]
|
||||
resolver = "3"
|
||||
|
||||
[dependencies]
|
||||
[workspace.package]
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
version = "0.1.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
csv = "1.4.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.145"
|
||||
sha2 = "0.10.9"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue