diff --git a/configs/structs.go b/configs/structs.go index 62df67a..21813b1 100644 --- a/configs/structs.go +++ b/configs/structs.go @@ -2,14 +2,12 @@ package configs type Manifest struct { Info struct { - Name string `toml:"name"` - Id string `toml:"id"` - Version string `toml:"version"` - Description string `toml:"description"` - Dependencies []string `toml:"dependencies"` - Author string `toml:"author"` - Family string `toml:"family"` - Serial uint `toml:"serial"` + Name string `toml:"name"` + Id string `toml:"id"` + Version string `toml:"version"` + Description string `toml:"description"` + Dependencies map[string]string `toml:"dependencies"` + Author string `toml:"author"` } `toml:"Info"` Hooks struct { Install string `toml:"install"`