mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
8 lines
323 B
Rust
8 lines
323 B
Rust
pub(crate) const BIN_NAME: &str = "puffin";
|
|
// Not all tests use them and cargo warns otherwise
|
|
#[allow(dead_code)]
|
|
pub(crate) const INSTA_FILTERS: &[(&str, &str)] = &[
|
|
(r"(\d+\.)?\d+(ms|s)", "[TIME]"),
|
|
(r"# .* pip-compile", "# [BIN_PATH] pip-compile"),
|
|
(r"--cache-dir .*", "--cache-dir [CACHE_DIR]"),
|
|
];
|