pub struct PypiLockParser;Expand description
PyPI lock file parser.
Implements lock file parsing for Python package managers (Poetry, uv).
Supports both poetry.lock and uv.lock formats.
§Lock File Location
The parser searches for lock files in the following order:
poetry.lockin the same directory aspyproject.tomluv.lockin the same directory aspyproject.toml
Poetry takes priority because it’s more established.
§Examples
use deps_pypi::lockfile::PypiLockParser;
use deps_core::lockfile::LockFileProvider;
use tower_lsp_server::ls_types::Uri;
let parser = PypiLockParser;
let manifest_uri = Uri::from_file_path("/path/to/pyproject.toml").unwrap();
if let Some(lockfile_path) = parser.locate_lockfile(&manifest_uri) {
let resolved = parser.parse_lockfile(&lockfile_path).await?;
println!("Found {} resolved packages", resolved.len());
}Trait Implementations§
Source§impl LockFileProvider for PypiLockParser
impl LockFileProvider for PypiLockParser
Source§fn locate_lockfile(&self, manifest_uri: &Uri) -> Option<PathBuf>
fn locate_lockfile(&self, manifest_uri: &Uri) -> Option<PathBuf>
Locates the lock file for a given manifest URI. Read more
Source§fn parse_lockfile<'life0, 'life1, 'async_trait>(
&'life0 self,
lockfile_path: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ResolvedPackages>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn parse_lockfile<'life0, 'life1, 'async_trait>(
&'life0 self,
lockfile_path: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ResolvedPackages>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Parses a lock file and extracts resolved packages. Read more
Source§fn is_lockfile_stale(
&self,
lockfile_path: &Path,
last_modified: SystemTime,
) -> bool
fn is_lockfile_stale( &self, lockfile_path: &Path, last_modified: SystemTime, ) -> bool
Checks if lock file has been modified since last parse. Read more
Auto Trait Implementations§
impl Freeze for PypiLockParser
impl RefUnwindSafe for PypiLockParser
impl Send for PypiLockParser
impl Sync for PypiLockParser
impl Unpin for PypiLockParser
impl UnwindSafe for PypiLockParser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more