guac 0.3.1

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

query Q1 {
  CertifyPkg(certifyPkgSpec: {}) {
    ...allCertifyPkg
  }
}

query Q2 {
  CertifyPkg(certifyPkgSpec: {origin: "testing backend"}) {
    ...allCertifyPkg
  }
}

query Q3 {
  CertifyPkg(certifyPkgSpec: {packages: {type: "conan", namespace: "", name: "openssl", version: "3.0.3", subpath: ""}}) {
    ...allCertifyPkg
  }
}

query Q4 {
  CertifyPkg(certifyPkgSpec: {packages: {type: "pypi", namespace: "", name: "django", version: "1.11.1", subpath: ""}}) {
    ...allCertifyPkg
  }
}