#![warn(missing_docs)]
pub mod error;
pub mod http;
pub mod manifest;
pub mod style;
pub mod types;
pub mod util;
pub mod version;
pub use error::DcuError;
pub use http::{DEFAULT_MAX_CONCURRENT_REQUESTS, DEFAULT_REQUEST_TIMEOUT_SECS, build_client};
pub use manifest::{ManifestHandler, ParsedManifest, RegistryClient, ScanResult, Scanner};
pub use style::{FileStyle, IndentStyle, LineEnding};
pub use types::{
BumpType, DependencySection, DependencySpec, ManifestKind, ManifestRef, PlannedUpdate,
ResolvedVersion, TargetLevel,
};
pub use util::{collect_task_results, strip_range_prefix};
pub use version::{SelectableVersion, select_version};