guac 0.3.1

A library that provides toolkit for working with [Guac](https://guac.sh) from Rust.
Documentation
fragment allCertifyVulnTree on CertifyVuln {
  id
  package {
      id
      type
      namespaces {
        id
        namespace
        names {
          id
          name
          versions {
            id
            version
            qualifiers {
              key
              value
            }
            subpath
          }
        }
      }
    }
  vulnerability {
    __typename
    ... on CVE {
      id
      year
      cveId
    }
    ... on OSV {
      id
      osvId
    }
    ... on GHSA {
      id
      ghsaId
    }
    ... on NoVuln {
      id
    }
  }
  metadata {
    dbUri
    dbVersion
    scannerUri
    scannerVersion
    origin
    collector
  }
}

query CertifyVulnQ1($package: PkgSpec) {
  CertifyVuln(certifyVulnSpec: {package: $package}) {
    ...allCertifyVulnTree
  }
}

query CertifyVulnQ2($cve: CVESpec) {
  CertifyVuln(certifyVulnSpec: {vulnerability: {cve: $cve}}) {
    ...allCertifyVulnTree
  }
}