chore: make COUNTS_DIR constant pub(crate)

Adjusts the visibility of the COUNTS_DIR constant to pub(crate), enabling internal crate-wide access without altering runtime behavior or data structures.
This commit is contained in:
Eric Coissac
2026-08-20 16:42:43 +02:00
parent 9379bbaad8
commit f64ac14f0e
+1 -1
View File
@@ -16,7 +16,7 @@ use crate::meta::IndexMode;
use crate::mphf_layer::MphfLayer;
pub(crate) use crate::mphf_layer::UNITIGS_FILE;
const COUNTS_DIR: &str = "counts";
pub(crate) const COUNTS_DIR: &str = "counts";
const PRESENCE_DIR: &str = "presence";
// ── Trait ─────────────────────────────────────────────────────────────────────