| # |
| # Copyright 2022 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| """ Declares dependencies for the examples of the Go differential privacy library """ |
| |
| load("@bazel_gazelle//:deps.bzl", "go_repository") |
| |
| def go_differential_privacy_examples_deps(): |
| """ Load dependencies for the Go DP Library examples. |
| |
| The following dependencies are auto-generated by Gazelle. Run `bazelisk run |
| //:update-repos` to update all dependencies based on the `go.mod` file. |
| """ |
| go_repository( |
| name = "com_github_golang_glog", |
| importpath = "github.com/golang/glog", |
| sum = "h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "org_golang_x_exp", |
| importpath = "golang.org/x/exp", |
| sum = "h1:n9HxLrNxWWtEb1cA950nuEEj3QnKbtsCJ6KjcgisNUs=", |
| version = "v0.0.0-20191002040644-a1355ae1e2c3", |
| ) |
| go_repository( |
| name = "org_gonum_v1_gonum", |
| importpath = "gonum.org/v1/gonum", |
| sum = "h1:xKuo6hzt+gMav00meVPUlXwSdoEJP46BR+wdxQEFK2o=", |
| version = "v0.12.0", |
| ) |