mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
a3e9aad147
* removing major LF dev version from Haskell proto codecs * removing major LF dev version from scenario service client * missed import * remove Scala support for dev major version; remove --allow-dev option from sandbox cli * Version.minorFromCliOption function * don't build daml-stdlib artifacts for dev major * remove damlc CLI --target dev * release note about removed dev major LF version * governance now discusses minor dev, no more major dev * don't build from daml_lf_dev.proto anymore * remove daml_lf_dev.proto * raise deprecated release * reserve 9999 in the ArchivePayload sum, as suggested by @bitonic * use reserved proto keyword, as suggested by @bitonic - `reserved` cannot occur within `oneof` block * remove --allow-dev test * dev removal release note followed the previous release; move it back to HEAD
32 lines
799 B
Python
32 lines
799 B
Python
# Copyright (c) 2019 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 = "daml-lf-proto",
|
|
srcs = glob(["src/**/*.hs"]),
|
|
hazel_deps = [
|
|
"base",
|
|
"bytestring",
|
|
"containers",
|
|
"cryptonite",
|
|
"either",
|
|
"lens",
|
|
"memory",
|
|
"proto3-suite",
|
|
"scientific",
|
|
"template-haskell",
|
|
"text",
|
|
"vector",
|
|
],
|
|
src_strip_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//compiler/daml-lf-ast",
|
|
"//daml-lf/archive:daml_lf_haskell_proto",
|
|
"//libs-haskell/da-hs-base",
|
|
"//libs-haskell/da-hs-pretty",
|
|
],
|
|
)
|