7730861bc5
## Summary
You can now use `cache-keys = [{ git = { commit = true, tags = true }
}]` to include both the current commit and set of tags in the cache key.
Closes https://github.com/astral-sh/uv/issues/7866.
Closes https://github.com/astral-sh/uv/issues/7997.
7 lines
105 B
Rust
7 lines
105 B
Rust
pub use crate::cache_info::*;
|
|
pub use crate::timestamp::*;
|
|
|
|
mod cache_info;
|
|
mod git_info;
|
|
mod timestamp;
|