mirror of
https://github.com/github/semantic.git
synced 2024-11-23 08:27:56 +03:00
3128f16e2d
There is a new proto-lens with some new methods on its typeclasses. This is what results from running `script/protoc`.
27 lines
587 B
Python
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",
|
|
],
|
|
)
|