- Fix parallel execution logic to properly handle JoinHandle<Result<R, E>> types - Use join_all instead of try_join_all for proper Result handling - Fix double question mark (??) issue in parallel execution methods - Clean up unused imports in parallel and cache modules - Ensure all performance optimization modules compile successfully - Fix CI build failures caused by compilation errors
43 lines
842 B
TOML
43 lines
842 B
TOML
[package]
|
|
name = "apt-ostreed"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Robojerk <robojerk@example.com>"]
|
|
description = "apt-ostree system management daemon"
|
|
license = "LGPL-2.0-or-later"
|
|
|
|
[dependencies]
|
|
# Core Rust dependencies
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
thiserror = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# DBus integration
|
|
zbus = "4.0"
|
|
zbus_macros = "4.0"
|
|
|
|
# OSTree integration
|
|
ostree = "0.18"
|
|
|
|
# APT integration
|
|
rust-apt = "0.3"
|
|
|
|
# System integration
|
|
libc = "0.2"
|
|
users = "0.11"
|
|
tempfile = "3.0"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Security and privileges
|
|
polkit = "0.1"
|
|
|
|
# Async utilities
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|