kache 0.4.1

Zero-copy, content-addressed Rust build cache. No copies, no wasted disk — just hardlinks locally and S3 for sharing.
1
2
3
4
5
6
7
8
#pragma once
#include <string_view>

namespace bar {
inline std::string_view greeting() noexcept {
    return "hello from bar";
}
} // namespace bar