A library and a tool for generating Rust types from daml
code.
This crate provides:
daml-derive
cratedaml_codegen
function which is
designed to be used from build.rs
filesThis crate should not be used directly when used as a library, instead you should depend on
the daml
crate and enable the codegen
feature:
toml
[dependencies]
daml = { version = "0.2.2", features = [ "codegen" ] }
shell
cargo install daml-codegen
```shell
USAGE:
daml-codegen [OPTIONS]
ARGS:
OPTIONS:
-c, --combine-modules Combine modules as a single file
-f, --module-filter
To generate Rust types from Daml dar MyModel.dar
in single src file /tmp/my_model_0_1_0.rs
:
shell
daml-codegen MyModel.dar --combine-modules -o /tmp/MyModel.dar
daml-codegen
is distributed under the terms of the Apache License (Version 2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in time by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
See LICENSE for details.
Copyright 2022