- Flattened nested bootupd/bootupd/ structure to root level - Moved all core project files to root directory - Added proper Debian packaging structure (debian/ directory) - Created build scripts and CI configuration - Improved project organization for CI/CD tools - All Rust source, tests, and configuration now at root level - Added GitHub Actions workflow for automated testing - Maintained all original functionality while improving structure
15 lines
371 B
TOML
Executable file
15 lines
371 B
TOML
Executable file
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
camino = "1.0"
|
|
chrono = { version = "0.4.23", default-features = false, features = ["std"] }
|
|
fn-error-context = "0.2.0"
|
|
toml = "0.8"
|
|
tempfile = "3.3"
|
|
xshell = { version = "0.2" }
|