Skip to content

Commit a4603cb

Browse files
committed
upgrade to holochain 0.6
1 parent 656cd89 commit a4603cb

File tree

15 files changed

+572
-778
lines changed

15 files changed

+572
-778
lines changed

Cargo.lock

Lines changed: 160 additions & 128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ opt-level = "z"
99
opt-level = "z"
1010

1111
[workspace.dependencies]
12-
hdi = "0.6.6"
13-
hdk = "0.5.6"
12+
hdi = "0.7.0"
13+
hdk = "0.6.0"
1414
serde = "1"
15-
holochain = "0.5.0"
15+
holochain = "0.6.0"

applet/workdir/web-happ.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
manifest_version: "1"
2+
manifest_version: "0"
33
name: notebooks
44
ui:
5-
bundled: "../dist.zip"
6-
happ_manifest:
7-
bundled: "../../../workdir/notebooks.happ"
5+
path: "../dist.zip"
6+
happ:
7+
path: "../../../workdir/notebooks.happ"

dnas/notebooks/workdir/dna.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
manifest_version: "1"
2+
manifest_version: "0"
33
name: notebooks
44

55
integrity:
66
network_seed: ~
77
properties: ~
88
zomes:
99
- name: syn_integrity
10-
bundled: ../../../target/wasm32-unknown-unknown/release/syn_integrity.wasm
10+
path: ../../../target/wasm32-unknown-unknown/release/syn_integrity.wasm
1111
- name: profiles_integrity
12-
bundled: ../../../target/wasm32-unknown-unknown/release/profiles_integrity.wasm
12+
path: ../../../target/wasm32-unknown-unknown/release/profiles_integrity.wasm
1313
coordinator:
1414
zomes:
1515
- name: syn
16-
bundled: ../../../target/wasm32-unknown-unknown/release/syn.wasm
16+
path: ../../../target/wasm32-unknown-unknown/release/syn.wasm
1717
dependencies:
1818
- name: syn_integrity
1919
- name: profiles
20-
bundled: ../../../target/wasm32-unknown-unknown/release/profiles.wasm
20+
path: ../../../target/wasm32-unknown-unknown/release/profiles.wasm
2121
dependencies:
2222
- name: profiles_integrity

dnas/notebooks/zomes/coordinator/profiles/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]
99
name = "profiles"
1010

1111
[dependencies]
12-
hc_zome_profiles_coordinator = { git = "https://github.com/holochain-open-dev/profiles", branch = "for-hdk-0.5.6" }
12+
hc_zome_profiles_coordinator = { git = "https://github.com/holochain-open-dev/profiles", branch = "main-0.6" }

dnas/notebooks/zomes/coordinator/syn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ name = "syn"
1010
[dependencies]
1111
derive_more = "0"
1212

13-
hc_zome_syn_coordinator = { git = "https://github.com/holochain/syn", branch = "main-0.5" }
13+
hc_zome_syn_coordinator = { git = "https://github.com/holochain/syn", branch = "main-0.6" }

dnas/notebooks/zomes/integrity/profiles/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]
99
name = "profiles_integrity"
1010

1111
[dependencies]
12-
hc_zome_profiles_integrity = { git = "https://github.com/holochain-open-dev/profiles", branch = "for-hdk-0.5.6" }
12+
hc_zome_profiles_integrity = { git = "https://github.com/holochain-open-dev/profiles", branch = "main-0.6" }

dnas/notebooks/zomes/integrity/syn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ name = "syn_integrity"
1111
derive_more = "0"
1212
serde = "1"
1313

14-
hc_zome_syn_integrity = { git = "https://github.com/holochain/syn", branch = "main-0.5" }
14+
hc_zome_syn_integrity = { git = "https://github.com/holochain/syn", branch = "main-0.6" }

flake.lock

Lines changed: 43 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Flake for Holochain app development";
33

44
inputs = {
5-
holonix.url = "github:holochain/holonix?ref=main-0.5";
5+
holonix.url = "github:holochain/holonix?ref=main";
66

77
nixpkgs.follows = "holonix/nixpkgs";
88
flake-parts.follows = "holonix/flake-parts";
@@ -26,7 +26,7 @@
2626
hn-introspect
2727
rust # For Rust development, with the WASM target included for zome builds
2828
]) ++ (with pkgs; [
29-
nodejs_20 # For UI development
29+
nodejs_22 # For UI development
3030
binaryen # For WASM optimisation
3131
# Add any other packages you need here
3232
]);

0 commit comments

Comments
 (0)