Expand description
Cargo.lock file parsing.
Parses Cargo.lock files (version 3 and 4) to extract resolved dependency versions. Supports workspace lock files and proper path resolution.
§Cargo.lock Format
Cargo.lock uses TOML format with an array of packages:
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "serde"
version = "1.0.195"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "..."
dependencies = [
"serde_derive",
]Structs§
- Cargo
Lock Parser - Cargo.lock file parser.