1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 08:27:56 +03:00
semantic/semantic-proto/BUILD.bazel
Patrick Thomson 3128f16e2d Bump protobuf definitions.
There is a new proto-lens with some new methods on its typeclasses.
This is what results from running `script/protoc`.
2020-09-10 18:55:41 -04:00

27 lines
587 B
Python

package(default_visibility = ["//visibility:public"])
load(
"@rules_haskell//haskell:defs.bzl",
"haskell_binary",
"haskell_library",
)
load(
"@rules_haskell//haskell:cabal.bzl",
"haskell_cabal_binary",
"haskell_cabal_library",
)
haskell_library(
name = "semantic-proto",
srcs = glob(["src/**/*.hs"]),
compiler_flags = ["-XOverloadedStrings"],
deps = [
"//:base",
"//:text",
"@stackage//:aeson",
"@stackage//:proto-lens",
"@stackage//:proto-lens-jsonpb",
"@stackage//:proto-lens-runtime",
],
)