data: move the YAML data files into a top-level data/ directory

This commit is contained in:
2026-09-18 13:15:29 +02:00
parent 69f3c3954e
commit 6e5ecd2f45
6 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ pub struct QuirksConfig {
pub quirks: HashMap<String, PackageQuirks>,
}
const QUIRKS_YAML: &str = include_str!("../quirks.yml");
const QUIRKS_YAML: &str = include_str!("../data/quirks.yml");
lazy_static! {
static ref QUIRKS_DATA: QuirksConfig = serde_yaml::from_str(QUIRKS_YAML).unwrap();
}