guac 0.3.1

A library that provides toolkit for working with [Guac](https://guac.sh) from Rust.
Documentation
query FindDependentProduct($purl: String!, $offset: Int, $limit: Int) {
  findDependentProduct(purl: $purl, offset: $offset, limit: $limit) {
    uri
    subject {
      __typename
      ... on Package {
      type
      namespaces {
        namespace
        names {
          name
          versions {
            id
            version
            qualifiers {
              key
              value
            }
            subpath
            }
        }
      }
    }
    }
  }
}