guac 0.3.1

A library that provides toolkit for working with [Guac](https://guac.sh) from Rust.
Documentation
fragment allPkgTree on Package {
  id
  type
  namespaces {
    id
    namespace
    names {
      id
      name
      versions {
        id
        version
        qualifiers {
          key
          value
        }
        subpath
      }
    }
  }
}

mutation IngestPackage($package: PkgInputSpec!) {
  ingestPackage(pkg: $package)
}

query QueryPackages($package: PkgSpec!) {
  packages(pkgSpec: $package) {
    ...allPkgTree
  }
}