1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use cratePackage;
use crateResult;
use HashMap;
use Path;
/// Type alias for dependency map: package name -> list of dependency names
pub type DependencyMap = ;
/// Type alias for lockfile parsing result: (packages, dependency map)
pub type LockfileParseResult = ;
/// LockfileReader port for reading and parsing lockfile contents
///
/// This port abstracts the file system operations and TOML parsing
/// needed to extract package information from uv.lock files.