Files
feynman/lockfile.go
T

14 lines
315 B
Go

package feynman
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"`
}