- Fixed Rust edition from 2025 to 2021 - Simplified CI workflow to focus on essential checks - Added format, clippy, and security audit jobs - Set Windows tests to continue-on-error due to environment issues - Formatted all code with rustfmt - Updated caching strategy for better performance
20 lines
345 B
TOML
20 lines
345 B
TOML
[workspace]
|
|
members = [ "ghost-cli",
|
|
"ghost-core", "ghost-tui",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Adir Shitrit"]
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|