14 lines
313 B
Go
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"`
|
|
}
|