1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2025 Hamadi // Licensed under the MIT License //! Modpack pipeline: downloads archive, parses manifest, produces `Vec<Mods>`. #![cfg(any(feature = "modrinth", feature = "curseforge"))] mod overrides; mod pipeline; #[cfg(feature = "modrinth")] mod modrinth; #[cfg(feature = "curseforge")] mod curseforge; pub(crate) use pipeline::process;