//! Swift Package Manager ecosystem support for deps-lsp.
//!
//! Provides LSP features for `Package.swift` files:
//! - Version autocomplete from GitHub tags
//! - Inlay hints showing latest versions
//! - Hover tooltips with package metadata
//! - Code actions to update versions
//! - Diagnostics for unknown packages
//!
//! Uses regex-based parsing (no Swift toolchain required) and GitHub API
//! for package discovery. Compatible with WASM (Zed extension) targets.
pub use SwiftEcosystem;
pub use SwiftError;
pub use SwiftFormatter;
pub use SwiftLockParser;
pub use parse_package_swift;
pub use SwiftRegistry;
pub use ;