add cli args

This commit is contained in:
mae
2026-07-14 07:54:18 -05:00
parent 1825b9a90b
commit 61a317fa79
3 changed files with 33 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
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"`
}