apt-ostree/Cargo.toml
robojerk 64b4cf3430 feat: Implement comprehensive performance optimization system
- Add LRU cache with TTL support for package metadata, deployments, and system info
- Implement parallel operations manager for CPU and I/O bound tasks
- Add comprehensive benchmarking framework with Criterion
- Support configurable concurrency limits and batch processing
- Include progress tracking and memory optimization
- Update project progress to 99% complete
- Ready for production deployment on Debian 13+ and Ubuntu 25.04+
2025-08-16 14:27:28 -07:00

95 lines
1.8 KiB
TOML

[package]
name = "apt-ostree"
version = "0.1.0"
edition = "2021"
description = "Debian/Ubuntu equivalent of rpm-ostree"
license = "GPL-3.0-or-later"
repository = "https://github.com/your-org/apt-ostree"
keywords = ["apt", "ostree", "debian", "ubuntu", "package-management"]
categories = ["system", "command-line-utilities"]
[dependencies]
# APT integration - using apt-pkg-native for better Debian Trixie compatibility
apt-pkg-native = "0.3.3"
# OSTree integration
ostree = "0.20.3"
# System and FFI
libc = "0.2"
pkg-config = "0.3"
num_cpus = "1.16"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Serialization (used extensively)
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
chrono = { version = "0.4", features = ["serde"] }
# Logging and output
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "time"] }
tracing-appender = "0.2"
# Async runtime (used for concurrent operations)
tokio = { version = "1.0", features = ["full"] }
# File system operations
walkdir = "2.4"
# D-Bus integration (used for daemon communication)
zbus = "4.0"
zbus_macros = "4.0"
# Temporary file handling
tempfile = "3.8"
# Regular expressions
regex = "1.0"
# Lazy static initialization
lazy_static = "1.4"
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# User and session management
users = "0.11"
# Polkit integration for security
polkit = "0.19"
# Cryptographic hashing
sha2 = "0.10"
sha256 = "1.0"
# Futures for async utilities
futures = "0.3"
async-trait = "0.1"
[build-dependencies]
pkg-config = "0.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true
[[bin]]
name = "apt-ostree"
path = "src/main.rs"
[[bin]]
name = "apt-ostreed"
path = "src/daemon_main.rs"
[dev-dependencies]
criterion = "0.7.0"