18 lines
372 B
TOML
18 lines
372 B
TOML
[package]
|
|
name = "rhailib"
|
|
version = "0.1.0"
|
|
edition = "2021" # Changed to 2021 for consistency with other crates
|
|
|
|
[dependencies]
|
|
# Dependencies for rhailib itself would go here
|
|
|
|
[workspace]
|
|
members = [
|
|
".", # Represents the root package (rhailib)
|
|
"src/client",
|
|
"src/engine",
|
|
"src/worker",
|
|
"examples",
|
|
]
|
|
resolver = "2" # Recommended for new workspaces
|