This module is has been designed to be included in other DNAs, assuming as little as possible from those.
Codeowner: @zo-el Consulted: None Informed: @jetttech
profile
: This profile zome is a simple implementation of managing agent details
- Create a new folder with the zome name (e.g
profile
) in thezomes
of the consuming DNA. - Add a new
Cargo.toml
in that folder. paste the bellow content in.
[package]
name = "<ZOME_NAME>"
version = "0.0.0"
authors = [ "" ]
edition = "2018"
[lib]
name = "<ZOME_NAME>"
crate-type = [ "cdylib", "rlib" ]
[dependencies]
<ZOME_NAME> = {git = "https://github.com/zo-el/hc-zomes", branch = "develop", package = "<ZOME_NAME>"}
hdk = "0"
holo_hash = "0"
hc_utils = "0"
- Change the all properties of the
Cargo.toml
file from<ZOME_NAME>
to the appropriate zome you want to import. - Create a
src/lib.rs
folder besides theCargo.toml
with this content:
extern crate <ZOME_NAME>;
- Add the zome into your
*.dna.workdir/dna.yaml
file. - Compile the DNA with the usual
CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown
.