assay-registry 3.5.1

Pack registry client for remote pack distribution (SPEC-Pack-Registry-v1)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Key/path derivation boundary scaffold for cache split.
//!
//! Planned ownership (Step2+):
//! - cache key and path derivation helpers

use std::path::{Path, PathBuf};

pub(crate) fn pack_dir_impl(cache_dir: &Path, name: &str, version: &str) -> PathBuf {
    cache_dir.join(name).join(version)
}