mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-26 12:09:12 +00:00
Upgrade to Rust 1.80.0 (#5472)
This commit is contained in:
parent
3ea5e16e96
commit
24859bd3ee
38 changed files with 163 additions and 196 deletions
|
@ -1,13 +1,12 @@
|
|||
use std::io;
|
||||
use std::path::Path;
|
||||
|
||||
use memchr::memmem::Finder;
|
||||
use once_cell::sync::Lazy;
|
||||
use pypi_types::VerbatimParsedUrl;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::io;
|
||||
use std::path::Path;
|
||||
use std::sync::LazyLock;
|
||||
use thiserror::Error;
|
||||
|
||||
static FINDER: Lazy<Finder> = Lazy::new(|| Finder::new(b"# /// script"));
|
||||
static FINDER: LazyLock<Finder> = LazyLock::new(|| Finder::new(b"# /// script"));
|
||||
|
||||
/// PEP 723 metadata as parsed from a `script` comment block.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue