mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-17 05:47:45 +00:00
Remove [u64; 4]
from small version to move Arc
to full version (#10345)
This commit is contained in:
parent
fb29445999
commit
373e34f5dd
9 changed files with 132 additions and 96 deletions
|
@ -2220,7 +2220,7 @@ impl FromStr for VersionRequest {
|
|||
};
|
||||
|
||||
// Cast the release components into u8s since that's what we use in `VersionRequest`
|
||||
let Ok(release) = try_into_u8_slice(version.release()) else {
|
||||
let Ok(release) = try_into_u8_slice(&version.release()) else {
|
||||
return Err(Error::InvalidVersionRequest(s.to_string()));
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue