Home | History | Annotate | Download | only in flatbuffers
      1 workspace(name = "com_github_google_flatbuffers")
      2 
      3 load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
      4 
      5 http_archive(
      6     name = "io_bazel_rules_go",
      7     sha256 = "492c3ac68ed9dcf527a07e6a1b2dcbf199c6bf8b35517951467ac32e421c06c1",
      8     urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.17.0/rules_go-0.17.0.tar.gz"],
      9 )
     10 
     11 load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
     12 
     13 go_rules_dependencies()
     14 
     15 go_register_toolchains()
     16