mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
1872c668a5
Change requested by Manoj. CHANGELOG_BEGIN CHANGELOG_END
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
load("//bazel_tools:haskell.bzl", "da_haskell_library")
|
|
|
|
da_haskell_library(
|
|
name = "client",
|
|
srcs = glob(["src/**/*.hs"]),
|
|
hackage_deps = [
|
|
"async",
|
|
"base",
|
|
"binary",
|
|
"blaze-html",
|
|
"bytestring",
|
|
"conduit-extra",
|
|
"conduit",
|
|
"containers",
|
|
"cryptonite",
|
|
"deepseq",
|
|
"directory",
|
|
"extra",
|
|
"filepath",
|
|
"grpc-haskell",
|
|
"grpc-haskell-core",
|
|
"hashable",
|
|
"lens",
|
|
"mtl",
|
|
"process",
|
|
"proto3-suite",
|
|
"proto3-wire",
|
|
"split",
|
|
"stm",
|
|
"system-filepath",
|
|
"text",
|
|
"time",
|
|
"transformers",
|
|
"uri-encode",
|
|
"vector",
|
|
],
|
|
src_strip_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//compiler/daml-lf-ast",
|
|
"//compiler/daml-lf-proto",
|
|
"//compiler/repl-service/protos:repl_service_haskell_proto",
|
|
"//daml-assistant:daml-project-config",
|
|
"//libs-haskell/bazel-runfiles",
|
|
"//libs-haskell/da-hs-base",
|
|
],
|
|
)
|