basic lockfile and manifest structs

This commit is contained in:
mae
2026-07-13 09:00:44 -05:00
parent 9d4c3e911e
commit 1825b9a90b
2 changed files with 64 additions and 0 deletions
+13
View File
@@ -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"`
}