- Core crate: Minimal shell-out implementation - Advanced crate: Pluggable backends and enhanced features - Main crate: Re-exports core + optional advanced features - Feature flags: Users choose complexity level - Examples: Working demonstrations of both approaches - Documentation: Clear README explaining the structure Implements the refined two-crate approach with workspace + feature flags.
19 lines
497 B
TOML
19 lines
497 B
TOML
[package]
|
|
name = "apt-dnf-bridge-advanced"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Advanced features for apt-dnf-bridge: pluggable backends, caching, and more"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[dependencies]
|
|
apt-dnf-bridge-core = { path = "../apt-dnf-bridge-core" }
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[features]
|
|
libapt-backend = []
|