fix: catch2 dependency should be v2

This commit is contained in:
Gabriele Musco 2024-06-23 16:28:50 +02:00
commit 7c99b33145
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -24,12 +24,13 @@ fn basalt_deps() -> Vec<Dependency> {
Dependency {
name: "catch2".into(),
dep_type: DepType::Include,
filename: "catch2/catch_all.hpp".into(),
filename: "catch2/catch.hpp".into(),
packages: HashMap::from([
(LinuxDistro::Arch, "catch2".into()),
(LinuxDistro::Arch, "catch2-v2".into()),
// WARN: on debian unstable this is v3!
(LinuxDistro::Debian, "catch2".into()),
(LinuxDistro::Fedora, "catch2-devel".into()),
(LinuxDistro::Alpine, "catch2-3".into()),
(LinuxDistro::Alpine, "catch2".into()),
]),
},
Dependency {