Add cacheable library target
All checks were successful
Rust Build / build (push) Successful in 37s

This commit is contained in:
2026-05-05 20:37:47 -07:00
parent 6cbd483b73
commit 9522ce85fc
2 changed files with 4 additions and 1 deletions

3
src/lib.rs Normal file
View File

@@ -0,0 +1,3 @@
pub fn message() -> &'static str {
"Hello, world! (sccache lib verification)"
}

View File

@@ -1,3 +1,3 @@
fn main() {
println!("Hello, world! (cache test v3)");
println!("{}", rust_hello_world::message());
}