Skip to content

Instantly share code, notes, and snippets.

View dunkelhaus's full-sized avatar
🧘‍♂️
Trying to evade existential crises born of JS.

dunkelhaus

🧘‍♂️
Trying to evade existential crises born of JS.
View GitHub Profile
@dunkelhaus
dunkelhaus / output-standard.txt
Created November 7, 2018 01:05
The output when running app-spec-rust with the existing Cargo.toml's [error is 'hdk' is not found]
mkdir: dist: File exists
====================================================================================
BUILDING genome with 'hc package --output dist/app-spec-rust.hcpkg --strip-meta':
------------------------------------------------------------------------------------
> cargo build --target wasm32-unknown-unknown --release
Compiling code v0.0.1 (/Volumes/TeraDrive/Code/app-spec-rust/zomes/blog/code)
error[E0432]: unresolved import `hdk::holochain_wasm_utils::api_serialization::get_entry::GetResultStatus`
--> src/blog.rs:5:26
|
5 | GetEntryOptions, GetResultStatus,
@dunkelhaus
dunkelhaus / output-edited-toml.txt
Created November 7, 2018 01:11
A result of manually pointing my Cargo.toml files in each zome to a local install of hdk-rust - toml files included below.
====================================================================================
BUILDING genome with 'hc package --output dist/app-spec-rust.hcpkg --strip-meta':
------------------------------------------------------------------------------------
> cargo build --target wasm32-unknown-unknown --release
Finished release [optimized] target(s) in 0.16s
> cargo build --release --target=wasm32-unknown-unknown
Finished release [optimized] target(s) in 0.49s
Created bundle file at "dist/app-spec-rust.hcpkg"
DONE.
====================================================================================