Files
feynman/internal/cargo/lockfile.go
T
2026-07-14 07:54:18 -05:00

14 lines
313 B
Go

package cargo
type CargoLock struct {
Packages []LockPackage `toml:"package"`
}
type LockPackage struct {
Name string `toml:"name"`
Version string `toml:"version"`
Dependencies []string `toml:"dependencies"`
Source string `toml:"source"`
Checksum string `toml:"checksum"`
}