DependencyResolver had zero call sites in prod or tests outside the module itself. The actual install-time dependency check lives in install.rs::detect_running_deps + check_install_deps; this DAG-walk solver was never wired up. -268 LoC. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
20 lines
703 B
Rust
20 lines
703 B
Rust
pub mod bitcoin_simulator;
|
|
pub mod health_monitor;
|
|
pub mod manifest;
|
|
pub mod podman_client;
|
|
pub mod port_manager;
|
|
pub mod runtime;
|
|
|
|
pub use bitcoin_simulator::{BitcoinSimulationMode, BitcoinSimulator};
|
|
pub use health_monitor::HealthMonitor;
|
|
pub use manifest::{
|
|
AppManifest, BuildConfig, ContainerConfig, Dependency, DerivedEnv, HealthCheck, HostFacts,
|
|
ManifestError, ResolvedSource, ResourceLimits, SecretEnv, SecretsProvider, SecurityPolicy,
|
|
Volume,
|
|
};
|
|
pub use podman_client::{
|
|
image_uses_insecure_registry, ContainerState, ContainerStatus, PodmanClient,
|
|
};
|
|
pub use port_manager::{PortError, PortManager};
|
|
pub use runtime::{AutoRuntime, ContainerRuntime, DockerRuntime, PodmanRuntime};
|