basic lockfile and manifest structs
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user