guac 0.3.1

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

query GetDependencies($package: PkgSpec) {
  IsDependency(isDependencySpec: {package: $package}) {
    ...allIsDependencyTree
  }
}

query IsDependent($package: PkgNameSpec, $version: String) {
  IsDependency(isDependencySpec: {dependentPackage: $package, versionRange: $version}) {
    ...allIsDependencyTree
  }
}