| Crates.io | hc_iz_membrane_manager |
| lib.rs | hc_iz_membrane_manager |
| version | 0.4.0-dev.17 |
| created_at | 2023-01-23 20:13:00.930722+00 |
| updated_at | 2024-09-18 21:21:39.014314+00 |
| description | A Holochain Integrity-Zome that helps validates the membrane proof passed into a DNA |
| homepage | https://github.com/holochain/hc-zome-lib/tree/develop/zomes/hc_iz_membrane_manager |
| repository | |
| max_upload_size | |
| id | 766162 |
| size | 11,464 |
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 detailsprofile) in the zomes of the consuming DNA.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"
Cargo.toml file from <ZOME_NAME> to the appropriate zome you want to import.src/lib.rs folder besides the Cargo.toml with this content:extern crate <ZOME_NAME>;
*.dna.workdir/dna.yaml file.CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown.