From 036c79e77d4e4698fc53a31851f8ca51cfd132b0 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 15:55:13 +1000 Subject: [PATCH 01/10] switch to Nix flakes for development, remove old Nix config --- default.nix | 21 ------ flake.nix | 35 ++++++++++ nix/sources.json | 14 ---- nix/sources.nix | 174 ----------------------------------------------- 4 files changed, 35 insertions(+), 209 deletions(-) delete mode 100644 default.nix create mode 100644 flake.nix delete mode 100644 nix/sources.json delete mode 100644 nix/sources.nix diff --git a/default.nix b/default.nix deleted file mode 100644 index 164667fe9..000000000 --- a/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -let - holonixPath = (import ./nix/sources.nix).holonix; - holonix = import (holonixPath) { - holochainVersionId = "v0_1_0"; - include = { - holochainBinaries = true; - node = false; - happs = false; - scaffolding = false; - }; - }; - nixpkgs = holonix.pkgs; -in -nixpkgs.mkShell { - inputsFrom = [ holonix.main ]; - packages = with nixpkgs; [ - niv - nodejs - nodePackages.pnpm - ]; -} diff --git a/flake.nix b/flake.nix new file mode 100644 index 000000000..abda9d9f1 --- /dev/null +++ b/flake.nix @@ -0,0 +1,35 @@ +{ + description = "Flake for Holochain app development"; + + inputs = { + nixpkgs.follows = "holochain-dev/nixpkgs"; + + holochain-dev = { + url = "github:holochain/holochain"; + inputs.versions.url = "github:holochain/holochain/?dir=versions/0_1"; + }; + }; + + outputs = inputs @ { ... }: + inputs.holochain-dev.inputs.flake-parts.lib.mkFlake + { + inherit inputs; + } + { + systems = builtins.attrNames inputs.holochain-dev.devShells; + perSystem = + { config + , pkgs + , system + , ... + }: { + devShells.default = pkgs.mkShell { + inputsFrom = [ inputs.holochain-dev.devShells.${system}.holonix ]; + packages = with pkgs; [ + nodejs-18_x + nodePackages.npm + ]; + }; + }; + }; +} diff --git a/nix/sources.json b/nix/sources.json deleted file mode 100644 index 8af3ca240..000000000 --- a/nix/sources.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "holonix": { - "branch": "main", - "description": "NixOS && Holochain", - "homepage": "", - "owner": "holochain", - "repo": "holonix", - "rev": "8b4e94cf4d1d54db5e3d8585e27ee8eb846b7f63", - "sha256": "0b17brdm3c8kgbcjywqqh6489rbk8a76xhldnf4j07av25lnd5xb", - "type": "tarball", - "url": "https://github.com/holochain/holonix/archive/8b4e94cf4d1d54db5e3d8585e27ee8eb846b7f63.tar.gz", - "url_template": "https://github.com///archive/.tar.gz" - } -} \ No newline at end of file diff --git a/nix/sources.nix b/nix/sources.nix deleted file mode 100644 index 1938409dd..000000000 --- a/nix/sources.nix +++ /dev/null @@ -1,174 +0,0 @@ -# This file has been generated by Niv. - -let - - # - # The fetchers. fetch_ fetches specs of type . - # - - fetch_file = pkgs: name: spec: - let - name' = sanitizeName name + "-src"; - in - if spec.builtin or true then - builtins_fetchurl { inherit (spec) url sha256; name = name'; } - else - pkgs.fetchurl { inherit (spec) url sha256; name = name'; }; - - fetch_tarball = pkgs: name: spec: - let - name' = sanitizeName name + "-src"; - in - if spec.builtin or true then - builtins_fetchTarball { name = name'; inherit (spec) url sha256; } - else - pkgs.fetchzip { name = name'; inherit (spec) url sha256; }; - - fetch_git = name: spec: - let - ref = - if spec ? ref then spec.ref else - if spec ? branch then "refs/heads/${spec.branch}" else - if spec ? tag then "refs/tags/${spec.tag}" else - abort "In git source '${name}': Please specify `ref`, `tag` or `branch`!"; - in - builtins.fetchGit { url = spec.repo; inherit (spec) rev; inherit ref; }; - - fetch_local = spec: spec.path; - - fetch_builtin-tarball = name: throw - ''[${name}] The niv type "builtin-tarball" is deprecated. You should instead use `builtin = true`. - $ niv modify ${name} -a type=tarball -a builtin=true''; - - fetch_builtin-url = name: throw - ''[${name}] The niv type "builtin-url" will soon be deprecated. You should instead use `builtin = true`. - $ niv modify ${name} -a type=file -a builtin=true''; - - # - # Various helpers - # - - # https://github.com/NixOS/nixpkgs/pull/83241/files#diff-c6f540a4f3bfa4b0e8b6bafd4cd54e8bR695 - sanitizeName = name: - ( - concatMapStrings (s: if builtins.isList s then "-" else s) - ( - builtins.split "[^[:alnum:]+._?=-]+" - ((x: builtins.elemAt (builtins.match "\\.*(.*)" x) 0) name) - ) - ); - - # The set of packages used when specs are fetched using non-builtins. - mkPkgs = sources: system: - let - sourcesNixpkgs = - import (builtins_fetchTarball { inherit (sources.nixpkgs) url sha256; }) { inherit system; }; - hasNixpkgsPath = builtins.any (x: x.prefix == "nixpkgs") builtins.nixPath; - hasThisAsNixpkgsPath = == ./.; - in - if builtins.hasAttr "nixpkgs" sources - then sourcesNixpkgs - else if hasNixpkgsPath && ! hasThisAsNixpkgsPath then - import {} - else - abort - '' - Please specify either (through -I or NIX_PATH=nixpkgs=...) or - add a package called "nixpkgs" to your sources.json. - ''; - - # The actual fetching function. - fetch = pkgs: name: spec: - - if ! builtins.hasAttr "type" spec then - abort "ERROR: niv spec ${name} does not have a 'type' attribute" - else if spec.type == "file" then fetch_file pkgs name spec - else if spec.type == "tarball" then fetch_tarball pkgs name spec - else if spec.type == "git" then fetch_git name spec - else if spec.type == "local" then fetch_local spec - else if spec.type == "builtin-tarball" then fetch_builtin-tarball name - else if spec.type == "builtin-url" then fetch_builtin-url name - else - abort "ERROR: niv spec ${name} has unknown type ${builtins.toJSON spec.type}"; - - # If the environment variable NIV_OVERRIDE_${name} is set, then use - # the path directly as opposed to the fetched source. - replace = name: drv: - let - saneName = stringAsChars (c: if isNull (builtins.match "[a-zA-Z0-9]" c) then "_" else c) name; - ersatz = builtins.getEnv "NIV_OVERRIDE_${saneName}"; - in - if ersatz == "" then drv else - # this turns the string into an actual Nix path (for both absolute and - # relative paths) - if builtins.substring 0 1 ersatz == "/" then /. + ersatz else /. + builtins.getEnv "PWD" + "/${ersatz}"; - - # Ports of functions for older nix versions - - # a Nix version of mapAttrs if the built-in doesn't exist - mapAttrs = builtins.mapAttrs or ( - f: set: with builtins; - listToAttrs (map (attr: { name = attr; value = f attr set.${attr}; }) (attrNames set)) - ); - - # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295 - range = first: last: if first > last then [] else builtins.genList (n: first + n) (last - first + 1); - - # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257 - stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1)); - - # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269 - stringAsChars = f: s: concatStrings (map f (stringToCharacters s)); - concatMapStrings = f: list: concatStrings (map f list); - concatStrings = builtins.concatStringsSep ""; - - # https://github.com/NixOS/nixpkgs/blob/8a9f58a375c401b96da862d969f66429def1d118/lib/attrsets.nix#L331 - optionalAttrs = cond: as: if cond then as else {}; - - # fetchTarball version that is compatible between all the versions of Nix - builtins_fetchTarball = { url, name ? null, sha256 }@attrs: - let - inherit (builtins) lessThan nixVersion fetchTarball; - in - if lessThan nixVersion "1.12" then - fetchTarball ({ inherit url; } // (optionalAttrs (!isNull name) { inherit name; })) - else - fetchTarball attrs; - - # fetchurl version that is compatible between all the versions of Nix - builtins_fetchurl = { url, name ? null, sha256 }@attrs: - let - inherit (builtins) lessThan nixVersion fetchurl; - in - if lessThan nixVersion "1.12" then - fetchurl ({ inherit url; } // (optionalAttrs (!isNull name) { inherit name; })) - else - fetchurl attrs; - - # Create the final "sources" from the config - mkSources = config: - mapAttrs ( - name: spec: - if builtins.hasAttr "outPath" spec - then abort - "The values in sources.json should not have an 'outPath' attribute" - else - spec // { outPath = replace name (fetch config.pkgs name spec); } - ) config.sources; - - # The "config" used by the fetchers - mkConfig = - { sourcesFile ? if builtins.pathExists ./sources.json then ./sources.json else null - , sources ? if isNull sourcesFile then {} else builtins.fromJSON (builtins.readFile sourcesFile) - , system ? builtins.currentSystem - , pkgs ? mkPkgs sources system - }: rec { - # The sources, i.e. the attribute set of spec name to spec - inherit sources; - - # The "pkgs" (evaluated nixpkgs) to use for e.g. non-builtin fetchers - inherit pkgs; - }; - -in -mkSources (mkConfig {}) // { __functor = _: settings: mkSources (mkConfig settings); } From a21fb97378e9c9e963d9e44e21c970f7249b64a3 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 15:55:19 +1000 Subject: [PATCH 02/10] add Nix Flake lockfile --- flake.lock | 420 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 420 insertions(+) create mode 100644 flake.lock diff --git a/flake.lock b/flake.lock new file mode 100644 index 000000000..a298b3a4c --- /dev/null +++ b/flake.lock @@ -0,0 +1,420 @@ +{ + "nodes": { + "cargo-chef": { + "flake": false, + "locked": { + "lastModified": 1672901199, + "narHash": "sha256-MHTuR4aQ1rQaBKx1vWDy2wbvcT0ZAzpkVB2zylSC+k0=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "5c9f11578a2e0783cce27666737d50f84510b8b5", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-rdme": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "crane": { + "inputs": { + "flake-compat": "flake-compat", + "flake-utils": "flake-utils", + "nixpkgs": [ + "holochain-dev", + "nixpkgs" + ], + "rust-overlay": "rust-overlay" + }, + "locked": { + "lastModified": 1675475924, + "narHash": "sha256-KWdfV9a6+zG6Ij/7PZYLnomjBZZUu8gdRy+hfjGrrJQ=", + "owner": "ipetkov", + "repo": "crane", + "rev": "1bde9c762ebf26de9f8ecf502357c92105bc4577", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crate2nix": { + "flake": false, + "locked": { + "lastModified": 1675642992, + "narHash": "sha256-uDBDZuiq7qyg82Udp82/r4zg5HKfIzBQqgl2U9THiQM=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "45fc83132c8c91c77a1cd61fe0c945411d1edba8", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1673956053, + "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_2": { + "flake": false, + "locked": { + "lastModified": 1673956053, + "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-parts": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib" + }, + "locked": { + "lastModified": 1675295133, + "narHash": "sha256-dU8fuLL98WFXG0VnRgM00bqKX6CEPBLybhiIDIgO45o=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "bf53492df08f3178ce85e0c9df8ed8d03c030c9f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-utils": { + "locked": { + "lastModified": 1667395993, + "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_2": { + "locked": { + "lastModified": 1659877975, + "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "holochain": { + "flake": false, + "locked": { + "lastModified": 1675455504, + "narHash": "sha256-619bpPtO0IUSzPzLNzHERuvqGblpjO65rsw3jdxoEkQ=", + "owner": "holochain", + "repo": "holochain", + "rev": "ed5b7bb461c2a8bfd4d2633bad604a20b8f2da03", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.1.3", + "repo": "holochain", + "type": "github" + } + }, + "holochain-dev": { + "inputs": { + "cargo-chef": "cargo-chef", + "cargo-rdme": "cargo-rdme", + "crane": "crane", + "crate2nix": "crate2nix", + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts", + "holochain": [ + "holochain-dev", + "versions", + "holochain" + ], + "lair": [ + "holochain-dev", + "versions", + "lair" + ], + "launcher": [ + "holochain-dev", + "versions", + "launcher" + ], + "nix-filter": "nix-filter", + "nixpkgs": "nixpkgs", + "pre-commit-hooks-nix": "pre-commit-hooks-nix", + "rust-overlay": "rust-overlay_2", + "scaffolding": [ + "holochain-dev", + "versions", + "scaffolding" + ], + "versions": "versions" + }, + "locked": { + "lastModified": 1677114229, + "narHash": "sha256-OOanazFU6bIsby1z+hfNIp6v3d5sSLZicH9kPpX0qdo=", + "owner": "holochain", + "repo": "holochain", + "rev": "2519b37cc813c4d6961d46c5a0ff8cd2a73d1783", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "lair": { + "flake": false, + "locked": { + "lastModified": 1670953460, + "narHash": "sha256-cqOr7iWzsNeomYQiiFggzG5Dr4X0ysnTkjtA8iwDLAQ=", + "owner": "holochain", + "repo": "lair", + "rev": "cbfbefefe43073904a914c8181a450209a74167b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.2.3", + "repo": "lair", + "type": "github" + } + }, + "launcher": { + "flake": false, + "locked": { + "lastModified": 1675974122, + "narHash": "sha256-eSYSMR4fHnwgquWaFZM2DOl7LRTsDrOGZTYkDc8HE3Q=", + "owner": "holochain", + "repo": "launcher", + "rev": "3bcd14e81cda07e015071b070c2ef032aa1d1193", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.1", + "repo": "launcher", + "type": "github" + } + }, + "nix-filter": { + "locked": { + "lastModified": 1675361037, + "narHash": "sha256-CTbDuDxFD3U3g/dWUB+r+B/snIe+qqP1R+1myuFGe2I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "e1b2f96c2a31415f362268bc48c3fccf47dff6eb", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1677063315, + "narHash": "sha256-qiB4ajTeAOVnVSAwCNEEkoybrAlA+cpeiBxLobHndE8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "988cc958c57ce4350ec248d2d53087777f9e1949", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs-lib": { + "locked": { + "dir": "lib", + "lastModified": 1675183161, + "narHash": "sha256-Zq8sNgAxDckpn7tJo7V1afRSk2eoVbu3OjI1QklGLNg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e1e1b192c1a5aab2960bf0a0bd53a2e8124fa18e", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "pre-commit-hooks-nix": { + "flake": false, + "locked": { + "lastModified": 1676513100, + "narHash": "sha256-MK39nQV86L2ag4TmcK5/+r1ULpzRLPbbfvWbPvIoYJE=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "5f0cba88ac4d6dd8cad5c6f6f1540b3d6a21a798", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "root": { + "inputs": { + "holochain-dev": "holochain-dev", + "nixpkgs": [ + "holochain-dev", + "nixpkgs" + ] + } + }, + "rust-overlay": { + "inputs": { + "flake-utils": [ + "holochain-dev", + "crane", + "flake-utils" + ], + "nixpkgs": [ + "holochain-dev", + "crane", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1675391458, + "narHash": "sha256-ukDKZw922BnK5ohL9LhwtaDAdCsJL7L6ScNEyF1lO9w=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "383a4acfd11d778d5c2efcf28376cbd845eeaedf", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_2": { + "inputs": { + "flake-utils": "flake-utils_2", + "nixpkgs": [ + "holochain-dev", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1677033035, + "narHash": "sha256-w6XsKaW46kZNEk2vVfuoNIBEq/YzDy9kNk8cU0xJZEQ=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "6c9e8ea3ba73a9fed29ddc1cc52ade8e5c946a8d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "scaffolding": { + "flake": false, + "locked": { + "lastModified": 1676931186, + "narHash": "sha256-PbsU7An/N+rCh2vQILsUsc34ewm6B7aKE9s8AdiT6VE=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "8bf000b4a8c79352633d21bfdd8fa46e27bd479f", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.1", + "repo": "scaffolding", + "type": "github" + } + }, + "versions": { + "inputs": { + "holochain": "holochain", + "lair": "lair", + "launcher": "launcher", + "scaffolding": "scaffolding" + }, + "locked": { + "dir": "versions/0_1", + "lastModified": 1677114229, + "narHash": "sha256-OOanazFU6bIsby1z+hfNIp6v3d5sSLZicH9kPpX0qdo=", + "owner": "holochain", + "repo": "holochain", + "rev": "2519b37cc813c4d6961d46c5a0ff8cd2a73d1783", + "type": "github" + }, + "original": { + "dir": "versions/0_1", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} From a3df7f20dbcad3e06bfb3489658bb1cf91d41130 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 15:58:28 +1000 Subject: [PATCH 03/10] Nix command updates --- package.json | 2 +- scripts/postinstall.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 920bffc61..85cc8a1f3 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "preinstall": "npx only-allow pnpm", "postinstall": "scripts/postinstall.sh", - "shell": "nix-shell", + "shell": "nix develop", "start": "pnpm run build; npm-run-all --parallel dev:graphql:adapter dev:graphql:client dev:graphql:explorer dht", "build": "npm-run-all --parallel build:graphql build:holochain:dev", "build:crates": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown", diff --git a/scripts/postinstall.sh b/scripts/postinstall.sh index 09e78f0b0..c76358d04 100755 --- a/scripts/postinstall.sh +++ b/scripts/postinstall.sh @@ -12,11 +12,11 @@ HDK_RUST_REVID=v0.0.50-alpha4 DEP_ERR_OUTTRO="Please see README for setup instructions." -HAS_NIX=$(command -v nix-shell >/dev/null 2>&1) +HAS_NIX=$(command -v nix >/dev/null 2>&1) HAS_NIX=$? if [[ $HAS_NIX ]]; then - echo "Nix is installed- simply run \`nix-shell\` to begin developing!" + echo "Nix is installed- simply run \`nix develop\` to begin developing!" else echo -e "Nix not installed... attempting Rust toolchain for advanced install...">&2; From f51da597347e0577b1c1618bc2f14a729916df94 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 15:58:45 +1000 Subject: [PATCH 04/10] update developer setup instructions --- docs/README.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/README.md b/docs/README.md index bb65fb186..3c8fdb561 100644 --- a/docs/README.md +++ b/docs/README.md @@ -33,14 +33,9 @@ You will need `holochain` & `hc`, `lair-keystore`, `cargo`, `node`, `pnpm` and `wasm-opt` installed and available on your path. -The easiest way to do this is using the built-in Nix shell. Simply [install Nix](https://nixos.org/download.html) and run `nix-shell` at the top level of this repository to load most of the necessary dependencies. +The easiest way to do this is using the built-in Nix shell. Simply [install Nix](https://nixos.org/download.html) and run `nix develop` at the top level of this repository to load most of the necessary dependencies. -Here is a way to do this without nix-shell: -``` -cargo install holochain --version 0.0.162 --locked -cargo install holochain_cli --version 0.0.57 --locked -cargo install lair_keystore --version 0.2.1 -``` +Otherwise you can also try you hand at [installing everything manually](https://developer.holochain.org/get-building/install-without-nix/). ### Setup the project @@ -212,7 +207,7 @@ The JavaScript API client modules are published to NPM with PNPM. **You must use ### Publishing a hApp Release -Publishing a hApp release is actually easy, thanks to the [Github Actions automation](https://github.com/h-REA/hREA/blob/sprout/.github/workflows/release.yml). +Publishing a hApp release is actually easy, thanks to the [Github Actions automation](https://github.com/h-REA/hREA/blob/sprout/.github/workflows/release.yml). The workflow will automatically create a release on Github, if you tag a commit locally using a correctly formatted string pattern, and push it to github. The string pattern should look similar to `happ-0.1.0` or `happ-0.0.1-alpha.7`. From 745ef79593dfa2378203f127ac563e2c16078b53 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:23:41 +1000 Subject: [PATCH 05/10] fix typo in Nix config for PNPM package manager --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index abda9d9f1..e08d723f4 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ inputsFrom = [ inputs.holochain-dev.devShells.${system}.holonix ]; packages = with pkgs; [ nodejs-18_x - nodePackages.npm + nodePackages.pnpm ]; }; }; From a26dd9aaf30b0c732470f278c65596f87470f02d Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:35:16 +1000 Subject: [PATCH 06/10] bump HDK/HDI dependency versions --- lib/hdk_records/Cargo.toml | 6 +++--- lib/hdk_relay_pagination/Cargo.toml | 2 +- lib/hdk_rpc_errors/Cargo.toml | 4 ++-- lib/hdk_semantic_indexes/client/Cargo.toml | 4 ++-- lib/hdk_semantic_indexes/error/Cargo.toml | 2 +- lib/hdk_semantic_indexes/integrity_core/Cargo.toml | 2 +- lib/hdk_semantic_indexes/integrity_zome/Cargo.toml | 2 +- lib/hdk_semantic_indexes/rpc/Cargo.toml | 2 +- lib/hdk_semantic_indexes/zome/Cargo.toml | 2 +- lib/hdk_semantic_indexes/zome_derive/Cargo.toml | 2 +- lib/hdk_time_indexing/Cargo.toml | 2 +- lib/hdk_time_indexing/tests/Cargo.toml | 6 +++--- lib/hdk_uuid_types/Cargo.toml | 4 ++-- lib/serde_maybe_undefined/Cargo.toml | 2 +- lib/vf_actions/Cargo.toml | 2 +- lib/vf_attributes_hdk/Cargo.toml | 4 ++-- lib/vf_measurement/Cargo.toml | 4 ++-- zomes/dna_auth_resolver/Cargo.toml | 2 +- zomes/rea_action/zome/Cargo.toml | 2 +- zomes/rea_agent/integrity_zome/Cargo.toml | 2 +- zomes/rea_agent/lib/Cargo.toml | 2 +- zomes/rea_agent/rpc/Cargo.toml | 4 ++-- zomes/rea_agent/storage/Cargo.toml | 4 ++-- zomes/rea_agent/zome/Cargo.toml | 2 +- zomes/rea_agent/zome_idx_agent/Cargo.toml | 2 +- zomes/rea_agreement/integrity_zome/Cargo.toml | 2 +- zomes/rea_agreement/rpc/Cargo.toml | 2 +- zomes/rea_agreement/storage/Cargo.toml | 4 ++-- zomes/rea_agreement/zome/Cargo.toml | 2 +- zomes/rea_agreement/zome_idx_agreement/Cargo.toml | 2 +- zomes/rea_commitment/integrity_zome/Cargo.toml | 2 +- zomes/rea_commitment/lib/Cargo.toml | 2 +- zomes/rea_commitment/rpc/Cargo.toml | 2 +- zomes/rea_commitment/storage/Cargo.toml | 4 ++-- zomes/rea_commitment/zome/Cargo.toml | 2 +- zomes/rea_commitment/zome_idx_planning/Cargo.toml | 2 +- zomes/rea_economic_event/integrity_zome/Cargo.toml | 2 +- zomes/rea_economic_event/lib/Cargo.toml | 2 +- zomes/rea_economic_event/rpc/Cargo.toml | 2 +- zomes/rea_economic_event/storage/Cargo.toml | 4 ++-- zomes/rea_economic_event/zome/Cargo.toml | 2 +- zomes/rea_economic_event/zome_api/Cargo.toml | 2 +- zomes/rea_economic_event/zome_idx_observation/Cargo.toml | 2 +- zomes/rea_economic_resource/integrity_zome/Cargo.toml | 2 +- zomes/rea_economic_resource/lib/Cargo.toml | 2 +- zomes/rea_economic_resource/rpc/Cargo.toml | 2 +- zomes/rea_economic_resource/storage/Cargo.toml | 4 ++-- zomes/rea_economic_resource/zome/Cargo.toml | 2 +- zomes/rea_economic_resource/zome_api/Cargo.toml | 2 +- zomes/rea_economic_resource/zome_idx_observation/Cargo.toml | 2 +- zomes/rea_fulfillment/integrity_zome/Cargo.toml | 2 +- zomes/rea_fulfillment/lib/Cargo.toml | 2 +- zomes/rea_fulfillment/lib_destination/Cargo.toml | 2 +- zomes/rea_fulfillment/lib_origin/Cargo.toml | 2 +- zomes/rea_fulfillment/rpc/Cargo.toml | 2 +- zomes/rea_fulfillment/storage/Cargo.toml | 4 ++-- zomes/rea_fulfillment/zome_idx_observation/Cargo.toml | 2 +- zomes/rea_fulfillment/zome_idx_planning/Cargo.toml | 2 +- zomes/rea_fulfillment/zome_observation/Cargo.toml | 2 +- zomes/rea_fulfillment/zome_planning/Cargo.toml | 2 +- zomes/rea_intent/integrity_zome/Cargo.toml | 2 +- zomes/rea_intent/lib/Cargo.toml | 2 +- zomes/rea_intent/rpc/Cargo.toml | 2 +- zomes/rea_intent/storage/Cargo.toml | 4 ++-- zomes/rea_intent/zome/Cargo.toml | 2 +- zomes/rea_intent/zome_idx_planning/Cargo.toml | 2 +- zomes/rea_plan/integrity_zome/Cargo.toml | 2 +- zomes/rea_plan/rpc/Cargo.toml | 2 +- zomes/rea_plan/storage/Cargo.toml | 4 ++-- zomes/rea_plan/zome/Cargo.toml | 2 +- zomes/rea_plan/zome_idx_plan/Cargo.toml | 2 +- zomes/rea_process/integrity_zome/Cargo.toml | 2 +- zomes/rea_process/lib/Cargo.toml | 2 +- zomes/rea_process/rpc/Cargo.toml | 2 +- zomes/rea_process/storage/Cargo.toml | 4 ++-- zomes/rea_process/zome/Cargo.toml | 2 +- zomes/rea_process/zome_idx_observation/Cargo.toml | 2 +- zomes/rea_process_specification/integrity_zome/Cargo.toml | 2 +- zomes/rea_process_specification/rpc/Cargo.toml | 2 +- zomes/rea_process_specification/storage/Cargo.toml | 4 ++-- zomes/rea_process_specification/zome/Cargo.toml | 2 +- .../zome_idx_specification/Cargo.toml | 2 +- zomes/rea_proposal/integrity_zome/Cargo.toml | 2 +- zomes/rea_proposal/rpc/Cargo.toml | 2 +- zomes/rea_proposal/storage/Cargo.toml | 4 ++-- zomes/rea_proposal/zome/Cargo.toml | 2 +- zomes/rea_proposal/zome_idx_proposal/Cargo.toml | 2 +- zomes/rea_proposed_intent/integrity_zome/Cargo.toml | 2 +- zomes/rea_proposed_intent/lib/Cargo.toml | 2 +- zomes/rea_proposed_intent/rpc/Cargo.toml | 2 +- zomes/rea_proposed_intent/storage/Cargo.toml | 4 ++-- zomes/rea_proposed_intent/zome/Cargo.toml | 2 +- zomes/rea_proposed_intent/zome_idx_proposal/Cargo.toml | 2 +- zomes/rea_proposed_to/integrity_zome/Cargo.toml | 2 +- zomes/rea_proposed_to/lib/Cargo.toml | 2 +- zomes/rea_proposed_to/rpc/Cargo.toml | 2 +- zomes/rea_proposed_to/storage/Cargo.toml | 4 ++-- zomes/rea_proposed_to/zome/Cargo.toml | 2 +- zomes/rea_proposed_to/zome_idx_proposal/Cargo.toml | 2 +- zomes/rea_resource_specification/integrity_zome/Cargo.toml | 2 +- zomes/rea_resource_specification/rpc/Cargo.toml | 2 +- zomes/rea_resource_specification/storage/Cargo.toml | 4 ++-- zomes/rea_resource_specification/zome/Cargo.toml | 2 +- .../zome_idx_specification/Cargo.toml | 2 +- zomes/rea_satisfaction/integrity_zome/Cargo.toml | 2 +- zomes/rea_satisfaction/lib/Cargo.toml | 2 +- zomes/rea_satisfaction/lib_destination/Cargo.toml | 2 +- zomes/rea_satisfaction/lib_origin/Cargo.toml | 2 +- zomes/rea_satisfaction/rpc/Cargo.toml | 2 +- zomes/rea_satisfaction/storage/Cargo.toml | 4 ++-- zomes/rea_satisfaction/zome_idx_observation/Cargo.toml | 2 +- zomes/rea_satisfaction/zome_idx_planning/Cargo.toml | 2 +- zomes/rea_satisfaction/zome_observation/Cargo.toml | 2 +- zomes/rea_satisfaction/zome_planning/Cargo.toml | 2 +- zomes/rea_unit/integrity_zome/Cargo.toml | 2 +- zomes/rea_unit/lib/Cargo.toml | 2 +- zomes/rea_unit/rpc/Cargo.toml | 2 +- zomes/rea_unit/storage/Cargo.toml | 4 ++-- zomes/rea_unit/zome/Cargo.toml | 2 +- zomes/rea_unit/zome_idx_specification/Cargo.toml | 2 +- 120 files changed, 146 insertions(+), 146 deletions(-) diff --git a/lib/hdk_records/Cargo.toml b/lib/hdk_records/Cargo.toml index 03ff4afe5..0f62de3b7 100644 --- a/lib/hdk_records/Cargo.toml +++ b/lib/hdk_records/Cargo.toml @@ -8,14 +8,14 @@ edition = "2018" thiserror = "1.0" serde = "1" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } -hdk = "=0.1.0" -holo_hash = "0.1.0-beta-rc.0" +hdk = "0.1.1" +holo_hash = "0.1.1" serde_maybe_undefined = { path = "../serde_maybe_undefined" } hdk_rpc_errors = { path = "../hdk_rpc_errors" } hdk_semantic_indexes_zome_rpc = { path = "../hdk_semantic_indexes/rpc" } hdk_semantic_indexes_error = { path = "../hdk_semantic_indexes/error" } -hc_zome_dna_auth_resolver_lib = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_lib = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} hdk_uuid_types = { path = "../hdk_uuid_types" } [lib] diff --git a/lib/hdk_relay_pagination/Cargo.toml b/lib/hdk_relay_pagination/Cargo.toml index df255e6a8..f1433f782 100644 --- a/lib/hdk_relay_pagination/Cargo.toml +++ b/lib/hdk_relay_pagination/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" [lib] crate-type = ["lib"] diff --git a/lib/hdk_rpc_errors/Cargo.toml b/lib/hdk_rpc_errors/Cargo.toml index eca862c1c..2c893bb86 100644 --- a/lib/hdk_rpc_errors/Cargo.toml +++ b/lib/hdk_rpc_errors/Cargo.toml @@ -7,8 +7,8 @@ edition = "2018" [dependencies] thiserror = "1.0" serde = "1" -hdk = "=0.1.0" -holo_hash = "0.1.0-beta-rc.0" +hdk = "0.1.1" +holo_hash = "0.1.1" hdk_semantic_indexes_error = { path = "../hdk_semantic_indexes/error" } [lib] diff --git a/lib/hdk_semantic_indexes/client/Cargo.toml b/lib/hdk_semantic_indexes/client/Cargo.toml index 4254c2adf..bfe26a140 100644 --- a/lib/hdk_semantic_indexes/client/Cargo.toml +++ b/lib/hdk_semantic_indexes/client/Cargo.toml @@ -7,12 +7,12 @@ edition = "2018" [dependencies] paste = "1.0" serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../hdk_records" } hdk_semantic_indexes_zome_rpc = { path = "../rpc" } hdk_semantic_indexes_core = { path = "../integrity_core" } -hc_zome_dna_auth_resolver_lib = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_lib = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] crate-type = ["lib"] diff --git a/lib/hdk_semantic_indexes/error/Cargo.toml b/lib/hdk_semantic_indexes/error/Cargo.toml index ea0af27ef..a704b5a5f 100644 --- a/lib/hdk_semantic_indexes/error/Cargo.toml +++ b/lib/hdk_semantic_indexes/error/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] thiserror = "1.0" -holo_hash = "0.1.0-beta-rc.0" +holo_hash = "0.1.1" [lib] crate-type = ["lib"] diff --git a/lib/hdk_semantic_indexes/integrity_core/Cargo.toml b/lib/hdk_semantic_indexes/integrity_core/Cargo.toml index 14af2715a..f96fb7c68 100644 --- a/lib/hdk_semantic_indexes/integrity_core/Cargo.toml +++ b/lib/hdk_semantic_indexes/integrity_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdi = "=0.2.0" +hdi = "0.2.1" [lib] crate-type = ["lib"] diff --git a/lib/hdk_semantic_indexes/integrity_zome/Cargo.toml b/lib/hdk_semantic_indexes/integrity_zome/Cargo.toml index 96c2e11fc..5bb4f7647 100644 --- a/lib/hdk_semantic_indexes/integrity_zome/Cargo.toml +++ b/lib/hdk_semantic_indexes/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hdk_semantic_indexes_core = { path = "../integrity_core" } diff --git a/lib/hdk_semantic_indexes/rpc/Cargo.toml b/lib/hdk_semantic_indexes/rpc/Cargo.toml index a4c070390..8ad6a254f 100644 --- a/lib/hdk_semantic_indexes/rpc/Cargo.toml +++ b/lib/hdk_semantic_indexes/rpc/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" hdk_rpc_errors = { path = "../../hdk_rpc_errors" } hdk_uuid_types = { path = "../../hdk_uuid_types" } diff --git a/lib/hdk_semantic_indexes/zome/Cargo.toml b/lib/hdk_semantic_indexes/zome/Cargo.toml index 6d1d1e30b..ed639ab4d 100644 --- a/lib/hdk_semantic_indexes/zome/Cargo.toml +++ b/lib/hdk_semantic_indexes/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_error = { path = "../error" } hdk_semantic_indexes_zome_rpc = { path = "../rpc" } diff --git a/lib/hdk_semantic_indexes/zome_derive/Cargo.toml b/lib/hdk_semantic_indexes/zome_derive/Cargo.toml index dc686bb7e..b85df57ed 100644 --- a/lib/hdk_semantic_indexes/zome_derive/Cargo.toml +++ b/lib/hdk_semantic_indexes/zome_derive/Cargo.toml @@ -11,7 +11,7 @@ quote = "1.0" convert_case = "0.1" hdk_semantic_indexes_core = { path = "../integrity_core" } # serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" [lib] proc-macro = true diff --git a/lib/hdk_time_indexing/Cargo.toml b/lib/hdk_time_indexing/Cargo.toml index 124db9976..e1894991a 100644 --- a/lib/hdk_time_indexing/Cargo.toml +++ b/lib/hdk_time_indexing/Cargo.toml @@ -9,7 +9,7 @@ lazy_static = "*" thiserror = "1.0" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_core = { path = "../hdk_semantic_indexes/integrity_core" } [lib] diff --git a/lib/hdk_time_indexing/tests/Cargo.toml b/lib/hdk_time_indexing/tests/Cargo.toml index 025f598fc..32c56b8fc 100644 --- a/lib/hdk_time_indexing/tests/Cargo.toml +++ b/lib/hdk_time_indexing/tests/Cargo.toml @@ -10,9 +10,9 @@ edition = "2021" [dependencies] hdk_time_indexing = { path = "../", features = ["internal-testing"] } # unit under testing -holo_hash = { version = "=0.1.0", features = ["encoding", "fixturators"] } -holochain_zome_types = { version = "=0.1.0", features = ["fixturators"] } -hdk = "=0.1.0" +holo_hash = { version = "0.1.1", features = ["encoding", "fixturators"] } +holochain_zome_types = { version = "0.1.1", features = ["fixturators"] } +hdk = "0.1.1" paste = "*" serde = "*" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } diff --git a/lib/hdk_uuid_types/Cargo.toml b/lib/hdk_uuid_types/Cargo.toml index c0620f395..be8df5eb9 100644 --- a/lib/hdk_uuid_types/Cargo.toml +++ b/lib/hdk_uuid_types/Cargo.toml @@ -6,10 +6,10 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" # This enables .to_string() for HoloHash types using base64 encoding -holo_hash = { version = "=0.1.0", features = ["encoding"] } +holo_hash = { version = "0.1.1", features = ["encoding"] } [lib] crate-type = ["lib"] diff --git a/lib/serde_maybe_undefined/Cargo.toml b/lib/serde_maybe_undefined/Cargo.toml index a4daf72ff..0c585c9e3 100644 --- a/lib/serde_maybe_undefined/Cargo.toml +++ b/lib/serde_maybe_undefined/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" serde = "1" [dev-dependencies] -hdk = "=0.1.0" +hdk = "0.1.1" [lib] crate-type = ["lib"] diff --git a/lib/vf_actions/Cargo.toml b/lib/vf_actions/Cargo.toml index 0782a7e96..c8a124232 100644 --- a/lib/vf_actions/Cargo.toml +++ b/lib/vf_actions/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" vf_attributes_hdk = { path = "../vf_attributes_hdk" } diff --git a/lib/vf_attributes_hdk/Cargo.toml b/lib/vf_attributes_hdk/Cargo.toml index 1d0462e42..807ef3713 100644 --- a/lib/vf_attributes_hdk/Cargo.toml +++ b/lib/vf_attributes_hdk/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } serde = "1" holochain_serialized_bytes = "=0.0.51" -holochain_zome_types = { version = "=0.1.0", default-features = false } -holo_hash = "0.1.0-beta-rc.0" +holochain_zome_types = { version = "0.1.1", default-features = false } +holo_hash = "0.1.1" hdk_uuid_types = { path = "../hdk_uuid_types" } hdk_semantic_indexes_zome_rpc = { path = "../hdk_semantic_indexes/rpc" } diff --git a/lib/vf_measurement/Cargo.toml b/lib/vf_measurement/Cargo.toml index 9153d66f0..193ec02f8 100644 --- a/lib/vf_measurement/Cargo.toml +++ b/lib/vf_measurement/Cargo.toml @@ -6,11 +6,11 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" vf_attributes_hdk = { path = "../vf_attributes_hdk" } hdk_records = { path = "../hdk_records"} -hdk = "=0.1.0" +hdk = "0.1.1" [lib] crate-type = ["lib"] diff --git a/zomes/dna_auth_resolver/Cargo.toml b/zomes/dna_auth_resolver/Cargo.toml index ed601a266..0c5b32465 100644 --- a/zomes/dna_auth_resolver/Cargo.toml +++ b/zomes/dna_auth_resolver/Cargo.toml @@ -5,7 +5,7 @@ authors = ["pospi "] edition = "2018" [dependencies] -hc_zome_dna_auth_resolver = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver"} +hc_zome_dna_auth_resolver = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver"} [lib] path = "src/lib.rs" diff --git a/zomes/rea_action/zome/Cargo.toml b/zomes/rea_action/zome/Cargo.toml index 9d4e0e035..f3ff1afab 100644 --- a/zomes/rea_action/zome/Cargo.toml +++ b/zomes/rea_action/zome/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_actions = { path = "../../../lib/vf_actions" } diff --git a/zomes/rea_agent/integrity_zome/Cargo.toml b/zomes/rea_agent/integrity_zome/Cargo.toml index a7f926a02..302d756b6 100644 --- a/zomes/rea_agent/integrity_zome/Cargo.toml +++ b/zomes/rea_agent/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_agent_storage = { path = "../storage" } diff --git a/zomes/rea_agent/lib/Cargo.toml b/zomes/rea_agent/lib/Cargo.toml index 0ce1eb161..67dcdc673 100644 --- a/zomes/rea_agent/lib/Cargo.toml +++ b/zomes/rea_agent/lib/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] paste = "1.0" serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_agent/rpc/Cargo.toml b/zomes/rea_agent/rpc/Cargo.toml index 538b01180..065f4d274 100644 --- a/zomes/rea_agent/rpc/Cargo.toml +++ b/zomes/rea_agent/rpc/Cargo.toml @@ -6,8 +6,8 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" -hdk = "=0.1.0" +holochain_serialized_bytes = "0.0.52" +hdk = "0.1.1" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } hdk_uuid_types = { path = "../../../lib/hdk_uuid_types" } diff --git a/zomes/rea_agent/storage/Cargo.toml b/zomes/rea_agent/storage/Cargo.toml index cb46db760..8f5c7d650 100644 --- a/zomes/rea_agent/storage/Cargo.toml +++ b/zomes/rea_agent/storage/Cargo.toml @@ -6,13 +6,13 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_agent_rpc = { path = "../rpc" } hc_zome_rea_agent_storage_consts = { path = "../storage_consts" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_agent/zome/Cargo.toml b/zomes/rea_agent/zome/Cargo.toml index 0e8420a51..acdd37f40 100644 --- a/zomes/rea_agent/zome/Cargo.toml +++ b/zomes/rea_agent/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_agent_rpc = { path = "../rpc" } hc_zome_rea_agent_lib = { path = "../lib" } diff --git a/zomes/rea_agent/zome_idx_agent/Cargo.toml b/zomes/rea_agent/zome_idx_agent/Cargo.toml index b4d02b277..06c5adf3c 100644 --- a/zomes/rea_agent/zome_idx_agent/Cargo.toml +++ b/zomes/rea_agent/zome_idx_agent/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_agreement/integrity_zome/Cargo.toml b/zomes/rea_agreement/integrity_zome/Cargo.toml index d86192ea6..5401b28f5 100644 --- a/zomes/rea_agreement/integrity_zome/Cargo.toml +++ b/zomes/rea_agreement/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_agreement_storage = { path = "../storage" } diff --git a/zomes/rea_agreement/rpc/Cargo.toml b/zomes/rea_agreement/rpc/Cargo.toml index d663572ba..1d486c83f 100644 --- a/zomes/rea_agreement/rpc/Cargo.toml +++ b/zomes/rea_agreement/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_agreement/storage/Cargo.toml b/zomes/rea_agreement/storage/Cargo.toml index f37e69bf8..4355b6959 100644 --- a/zomes/rea_agreement/storage/Cargo.toml +++ b/zomes/rea_agreement/storage/Cargo.toml @@ -6,13 +6,13 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_agreement_rpc = { path = "../rpc" } hc_zome_rea_agreement_storage_consts = { path = "../storage_consts" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] crate-type = ["lib"] diff --git a/zomes/rea_agreement/zome/Cargo.toml b/zomes/rea_agreement/zome/Cargo.toml index 2e9ad5464..112a0a904 100644 --- a/zomes/rea_agreement/zome/Cargo.toml +++ b/zomes/rea_agreement/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_agreement_rpc = { path = "../rpc" } hc_zome_rea_agreement_lib = { path = "../lib" } diff --git a/zomes/rea_agreement/zome_idx_agreement/Cargo.toml b/zomes/rea_agreement/zome_idx_agreement/Cargo.toml index a9dc8d76e..188256077 100644 --- a/zomes/rea_agreement/zome_idx_agreement/Cargo.toml +++ b/zomes/rea_agreement/zome_idx_agreement/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_commitment/integrity_zome/Cargo.toml b/zomes/rea_commitment/integrity_zome/Cargo.toml index 1df78f9a6..39aa22968 100644 --- a/zomes/rea_commitment/integrity_zome/Cargo.toml +++ b/zomes/rea_commitment/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_commitment_storage = { path = "../storage" } diff --git a/zomes/rea_commitment/lib/Cargo.toml b/zomes/rea_commitment/lib/Cargo.toml index 15404b47c..6ed497a47 100644 --- a/zomes/rea_commitment/lib/Cargo.toml +++ b/zomes/rea_commitment/lib/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] paste = "1.0" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_commitment/rpc/Cargo.toml b/zomes/rea_commitment/rpc/Cargo.toml index 30d5b1d6e..70d09c11d 100644 --- a/zomes/rea_commitment/rpc/Cargo.toml +++ b/zomes/rea_commitment/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_commitment/storage/Cargo.toml b/zomes/rea_commitment/storage/Cargo.toml index 3241f01fd..cd4f800f1 100644 --- a/zomes/rea_commitment/storage/Cargo.toml +++ b/zomes/rea_commitment/storage/Cargo.toml @@ -6,14 +6,14 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_measurement = { path = "../../../lib/vf_measurement" } vf_actions = { path = "../../../lib/vf_actions" } hc_zome_rea_commitment_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_commitment/zome/Cargo.toml b/zomes/rea_commitment/zome/Cargo.toml index 3d9bc90b0..c51612592 100644 --- a/zomes/rea_commitment/zome/Cargo.toml +++ b/zomes/rea_commitment/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_commitment_rpc = { path = "../rpc" } hc_zome_rea_commitment_lib = { path = "../lib" } diff --git a/zomes/rea_commitment/zome_idx_planning/Cargo.toml b/zomes/rea_commitment/zome_idx_planning/Cargo.toml index d0bd5b78f..7c16a9c69 100644 --- a/zomes/rea_commitment/zome_idx_planning/Cargo.toml +++ b/zomes/rea_commitment/zome_idx_planning/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" paste = "1.0" serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_economic_event/integrity_zome/Cargo.toml b/zomes/rea_economic_event/integrity_zome/Cargo.toml index 3eef6766f..9063d6731 100644 --- a/zomes/rea_economic_event/integrity_zome/Cargo.toml +++ b/zomes/rea_economic_event/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_economic_event_storage = { path = "../storage" } diff --git a/zomes/rea_economic_event/lib/Cargo.toml b/zomes/rea_economic_event/lib/Cargo.toml index 6b9dff130..125f38e48 100644 --- a/zomes/rea_economic_event/lib/Cargo.toml +++ b/zomes/rea_economic_event/lib/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] paste = "1.0" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_relay_pagination = { path = "../../../lib/hdk_relay_pagination" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_economic_event/rpc/Cargo.toml b/zomes/rea_economic_event/rpc/Cargo.toml index ff5dead17..569be08b3 100644 --- a/zomes/rea_economic_event/rpc/Cargo.toml +++ b/zomes/rea_economic_event/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" hdk_relay_pagination = { path = "../../../lib/hdk_relay_pagination" } serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } diff --git a/zomes/rea_economic_event/storage/Cargo.toml b/zomes/rea_economic_event/storage/Cargo.toml index 51543972e..4c5838527 100644 --- a/zomes/rea_economic_event/storage/Cargo.toml +++ b/zomes/rea_economic_event/storage/Cargo.toml @@ -6,14 +6,14 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_actions = { path = "../../../lib/vf_actions" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_measurement = { path = "../../../lib/vf_measurement" } hc_zome_rea_economic_event_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_economic_event/zome/Cargo.toml b/zomes/rea_economic_event/zome/Cargo.toml index 1bfd5772b..3daa49ade 100644 --- a/zomes/rea_economic_event/zome/Cargo.toml +++ b/zomes/rea_economic_event/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_economic_event_zome_api = { path = "../zome_api" } hc_zome_rea_economic_event_lib = { path = "../lib" } diff --git a/zomes/rea_economic_event/zome_api/Cargo.toml b/zomes/rea_economic_event/zome_api/Cargo.toml index 1ebced5f7..57d7759d7 100644 --- a/zomes/rea_economic_event/zome_api/Cargo.toml +++ b/zomes/rea_economic_event/zome_api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_economic_event/zome_idx_observation/Cargo.toml b/zomes/rea_economic_event/zome_idx_observation/Cargo.toml index c57efdddd..9656510d1 100644 --- a/zomes/rea_economic_event/zome_idx_observation/Cargo.toml +++ b/zomes/rea_economic_event/zome_idx_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_economic_resource/integrity_zome/Cargo.toml b/zomes/rea_economic_resource/integrity_zome/Cargo.toml index e22fec7f2..a42b1507b 100644 --- a/zomes/rea_economic_resource/integrity_zome/Cargo.toml +++ b/zomes/rea_economic_resource/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_economic_resource_storage = { path = "../storage" } diff --git a/zomes/rea_economic_resource/lib/Cargo.toml b/zomes/rea_economic_resource/lib/Cargo.toml index 52657b957..6bbbad1c4 100644 --- a/zomes/rea_economic_resource/lib/Cargo.toml +++ b/zomes/rea_economic_resource/lib/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] paste = "1.0" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_relay_pagination = { path = "../../../lib/hdk_relay_pagination" } hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_economic_resource/rpc/Cargo.toml b/zomes/rea_economic_resource/rpc/Cargo.toml index 26a36e0b3..77543b242 100644 --- a/zomes/rea_economic_resource/rpc/Cargo.toml +++ b/zomes/rea_economic_resource/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_economic_resource/storage/Cargo.toml b/zomes/rea_economic_resource/storage/Cargo.toml index 93c1b6711..931247010 100644 --- a/zomes/rea_economic_resource/storage/Cargo.toml +++ b/zomes/rea_economic_resource/storage/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } @@ -17,7 +17,7 @@ hc_zome_rea_economic_resource_rpc = { path = "../rpc" } hc_zome_rea_economic_event_storage = { path = "../../rea_economic_event/storage" } hc_zome_rea_economic_event_rpc = { path = "../../rea_economic_event/rpc" } hc_zome_rea_resource_specification_rpc = { path = "../../rea_resource_specification/rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_economic_resource/zome/Cargo.toml b/zomes/rea_economic_resource/zome/Cargo.toml index f7d569255..622e8377a 100644 --- a/zomes/rea_economic_resource/zome/Cargo.toml +++ b/zomes/rea_economic_resource/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_economic_resource_zome_api = { path = "../zome_api" } hc_zome_rea_economic_resource_lib = { path = "../lib" } diff --git a/zomes/rea_economic_resource/zome_api/Cargo.toml b/zomes/rea_economic_resource/zome_api/Cargo.toml index ecdbc0cc7..aef3fcd35 100644 --- a/zomes/rea_economic_resource/zome_api/Cargo.toml +++ b/zomes/rea_economic_resource/zome_api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_economic_resource/zome_idx_observation/Cargo.toml b/zomes/rea_economic_resource/zome_idx_observation/Cargo.toml index 3ae64a555..6636be829 100644 --- a/zomes/rea_economic_resource/zome_idx_observation/Cargo.toml +++ b/zomes/rea_economic_resource/zome_idx_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_fulfillment/integrity_zome/Cargo.toml b/zomes/rea_fulfillment/integrity_zome/Cargo.toml index ff67b6d02..1d4e47177 100644 --- a/zomes/rea_fulfillment/integrity_zome/Cargo.toml +++ b/zomes/rea_fulfillment/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_fulfillment_storage = { path = "../storage" } diff --git a/zomes/rea_fulfillment/lib/Cargo.toml b/zomes/rea_fulfillment/lib/Cargo.toml index c37506b30..1ae7a7b05 100644 --- a/zomes/rea_fulfillment/lib/Cargo.toml +++ b/zomes/rea_fulfillment/lib/Cargo.toml @@ -5,7 +5,7 @@ authors = ["pospi "] edition = "2018" [dependencies] -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_fulfillment/lib_destination/Cargo.toml b/zomes/rea_fulfillment/lib_destination/Cargo.toml index 91f4e7185..d84a1ce70 100644 --- a/zomes/rea_fulfillment/lib_destination/Cargo.toml +++ b/zomes/rea_fulfillment/lib_destination/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" paste = "1.0" # :TODO: remove if removing debug logging # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_fulfillment/lib_origin/Cargo.toml b/zomes/rea_fulfillment/lib_origin/Cargo.toml index 28d601f52..50e78a4c5 100644 --- a/zomes/rea_fulfillment/lib_origin/Cargo.toml +++ b/zomes/rea_fulfillment/lib_origin/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] paste = "1.0" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_fulfillment/rpc/Cargo.toml b/zomes/rea_fulfillment/rpc/Cargo.toml index 794405aa2..3a042269f 100644 --- a/zomes/rea_fulfillment/rpc/Cargo.toml +++ b/zomes/rea_fulfillment/rpc/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" serde_bytes = "*" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_fulfillment/storage/Cargo.toml b/zomes/rea_fulfillment/storage/Cargo.toml index b81bb8c56..a8b3c4560 100644 --- a/zomes/rea_fulfillment/storage/Cargo.toml +++ b/zomes/rea_fulfillment/storage/Cargo.toml @@ -6,14 +6,14 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_measurement = { path = "../../../lib/vf_measurement" } vf_actions = { path = "../../../lib/vf_actions" } hc_zome_rea_fulfillment_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_fulfillment/zome_idx_observation/Cargo.toml b/zomes/rea_fulfillment/zome_idx_observation/Cargo.toml index a745bcf21..55f178daa 100644 --- a/zomes/rea_fulfillment/zome_idx_observation/Cargo.toml +++ b/zomes/rea_fulfillment/zome_idx_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_fulfillment/zome_idx_planning/Cargo.toml b/zomes/rea_fulfillment/zome_idx_planning/Cargo.toml index e785be847..c4c430a8c 100644 --- a/zomes/rea_fulfillment/zome_idx_planning/Cargo.toml +++ b/zomes/rea_fulfillment/zome_idx_planning/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_fulfillment/zome_observation/Cargo.toml b/zomes/rea_fulfillment/zome_observation/Cargo.toml index 2d59ad08f..e6d36b138 100644 --- a/zomes/rea_fulfillment/zome_observation/Cargo.toml +++ b/zomes/rea_fulfillment/zome_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_fulfillment_lib_destination = { path = "../lib_destination" } hc_zome_rea_fulfillment_rpc = { path = "../rpc" } diff --git a/zomes/rea_fulfillment/zome_planning/Cargo.toml b/zomes/rea_fulfillment/zome_planning/Cargo.toml index 37f880547..3e4e19109 100644 --- a/zomes/rea_fulfillment/zome_planning/Cargo.toml +++ b/zomes/rea_fulfillment/zome_planning/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_fulfillment_rpc = { path = "../rpc" } hc_zome_rea_fulfillment_lib_origin = { path = "../lib_origin" } diff --git a/zomes/rea_intent/integrity_zome/Cargo.toml b/zomes/rea_intent/integrity_zome/Cargo.toml index 312885255..3afc73db4 100644 --- a/zomes/rea_intent/integrity_zome/Cargo.toml +++ b/zomes/rea_intent/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_intent_storage = { path = "../storage" } diff --git a/zomes/rea_intent/lib/Cargo.toml b/zomes/rea_intent/lib/Cargo.toml index 948ac87e2..cded10631 100644 --- a/zomes/rea_intent/lib/Cargo.toml +++ b/zomes/rea_intent/lib/Cargo.toml @@ -9,7 +9,7 @@ paste = "1.0" # :TODO: remove if removing debug outputs from this crate # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_intent/rpc/Cargo.toml b/zomes/rea_intent/rpc/Cargo.toml index 1518e12ca..4cd3899f9 100644 --- a/zomes/rea_intent/rpc/Cargo.toml +++ b/zomes/rea_intent/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_intent/storage/Cargo.toml b/zomes/rea_intent/storage/Cargo.toml index b9f886cf3..2fbb1ddc8 100644 --- a/zomes/rea_intent/storage/Cargo.toml +++ b/zomes/rea_intent/storage/Cargo.toml @@ -6,14 +6,14 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_measurement = { path = "../../../lib/vf_measurement" } vf_actions = { path = "../../../lib/vf_actions" } hc_zome_rea_intent_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_intent/zome/Cargo.toml b/zomes/rea_intent/zome/Cargo.toml index 15dc23c65..6b3a36cb2 100644 --- a/zomes/rea_intent/zome/Cargo.toml +++ b/zomes/rea_intent/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_intent_rpc = { path = "../rpc" } hc_zome_rea_intent_lib = { path = "../lib" } diff --git a/zomes/rea_intent/zome_idx_planning/Cargo.toml b/zomes/rea_intent/zome_idx_planning/Cargo.toml index 4601d258a..8b2e9e8ea 100644 --- a/zomes/rea_intent/zome_idx_planning/Cargo.toml +++ b/zomes/rea_intent/zome_idx_planning/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_plan/integrity_zome/Cargo.toml b/zomes/rea_plan/integrity_zome/Cargo.toml index 6e692302a..a58418172 100644 --- a/zomes/rea_plan/integrity_zome/Cargo.toml +++ b/zomes/rea_plan/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_plan_storage = { path = "../storage" } diff --git a/zomes/rea_plan/rpc/Cargo.toml b/zomes/rea_plan/rpc/Cargo.toml index f99d9d5a2..b785275f0 100644 --- a/zomes/rea_plan/rpc/Cargo.toml +++ b/zomes/rea_plan/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_plan/storage/Cargo.toml b/zomes/rea_plan/storage/Cargo.toml index 9252c58ac..230dd6990 100644 --- a/zomes/rea_plan/storage/Cargo.toml +++ b/zomes/rea_plan/storage/Cargo.toml @@ -6,13 +6,13 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_plan_rpc = { path = "../rpc" } hc_zome_rea_plan_storage_consts = { path = "../storage_consts" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_plan/zome/Cargo.toml b/zomes/rea_plan/zome/Cargo.toml index d39802530..859ef62f8 100644 --- a/zomes/rea_plan/zome/Cargo.toml +++ b/zomes/rea_plan/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_plan_rpc = { path = "../rpc" } hc_zome_rea_plan_lib = { path = "../lib" } diff --git a/zomes/rea_plan/zome_idx_plan/Cargo.toml b/zomes/rea_plan/zome_idx_plan/Cargo.toml index b57af89dc..ee650bc2f 100644 --- a/zomes/rea_plan/zome_idx_plan/Cargo.toml +++ b/zomes/rea_plan/zome_idx_plan/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_process/integrity_zome/Cargo.toml b/zomes/rea_process/integrity_zome/Cargo.toml index 99ad980ee..cbd96c973 100644 --- a/zomes/rea_process/integrity_zome/Cargo.toml +++ b/zomes/rea_process/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_process_storage = { path = "../storage" } diff --git a/zomes/rea_process/lib/Cargo.toml b/zomes/rea_process/lib/Cargo.toml index aa9dab37a..91242658d 100644 --- a/zomes/rea_process/lib/Cargo.toml +++ b/zomes/rea_process/lib/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] paste = "1.0" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } hc_zome_rea_process_storage = { path = "../storage" } diff --git a/zomes/rea_process/rpc/Cargo.toml b/zomes/rea_process/rpc/Cargo.toml index d6a4185a0..be376c058 100644 --- a/zomes/rea_process/rpc/Cargo.toml +++ b/zomes/rea_process/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_process/storage/Cargo.toml b/zomes/rea_process/storage/Cargo.toml index b1959ae37..446204d9b 100644 --- a/zomes/rea_process/storage/Cargo.toml +++ b/zomes/rea_process/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_process_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_process/zome/Cargo.toml b/zomes/rea_process/zome/Cargo.toml index 41a6d1996..b8229b944 100644 --- a/zomes/rea_process/zome/Cargo.toml +++ b/zomes/rea_process/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_process/zome_idx_observation/Cargo.toml b/zomes/rea_process/zome_idx_observation/Cargo.toml index 17c7b818d..cb81ffe76 100644 --- a/zomes/rea_process/zome_idx_observation/Cargo.toml +++ b/zomes/rea_process/zome_idx_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_process_specification/integrity_zome/Cargo.toml b/zomes/rea_process_specification/integrity_zome/Cargo.toml index 919350d5e..e3ab0342c 100644 --- a/zomes/rea_process_specification/integrity_zome/Cargo.toml +++ b/zomes/rea_process_specification/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_process_specification_storage = { path = "../storage" } diff --git a/zomes/rea_process_specification/rpc/Cargo.toml b/zomes/rea_process_specification/rpc/Cargo.toml index df421ed5d..bece0e3cf 100644 --- a/zomes/rea_process_specification/rpc/Cargo.toml +++ b/zomes/rea_process_specification/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_process_specification/storage/Cargo.toml b/zomes/rea_process_specification/storage/Cargo.toml index f8f2f7181..20adb684e 100644 --- a/zomes/rea_process_specification/storage/Cargo.toml +++ b/zomes/rea_process_specification/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_process_specification_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_process_specification/zome/Cargo.toml b/zomes/rea_process_specification/zome/Cargo.toml index 44f282856..117380d62 100644 --- a/zomes/rea_process_specification/zome/Cargo.toml +++ b/zomes/rea_process_specification/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_process_specification_rpc = { path = "../rpc" } hc_zome_rea_process_specification_lib = { path = "../lib" } diff --git a/zomes/rea_process_specification/zome_idx_specification/Cargo.toml b/zomes/rea_process_specification/zome_idx_specification/Cargo.toml index 0f0c598a6..a44bbc9ff 100644 --- a/zomes/rea_process_specification/zome_idx_specification/Cargo.toml +++ b/zomes/rea_process_specification/zome_idx_specification/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_proposal/integrity_zome/Cargo.toml b/zomes/rea_proposal/integrity_zome/Cargo.toml index 8749b9615..b155a4a55 100644 --- a/zomes/rea_proposal/integrity_zome/Cargo.toml +++ b/zomes/rea_proposal/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_proposal_storage = { path = "../storage" } diff --git a/zomes/rea_proposal/rpc/Cargo.toml b/zomes/rea_proposal/rpc/Cargo.toml index ad56ab224..e1c39ed81 100644 --- a/zomes/rea_proposal/rpc/Cargo.toml +++ b/zomes/rea_proposal/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_proposal/storage/Cargo.toml b/zomes/rea_proposal/storage/Cargo.toml index deb16ff0b..04b48d3c9 100644 --- a/zomes/rea_proposal/storage/Cargo.toml +++ b/zomes/rea_proposal/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_proposal_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_proposal/zome/Cargo.toml b/zomes/rea_proposal/zome/Cargo.toml index 0abac09f3..e855e4fc9 100644 --- a/zomes/rea_proposal/zome/Cargo.toml +++ b/zomes/rea_proposal/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_proposal_rpc = { path = "../rpc" } hc_zome_rea_proposal_lib = { path = "../lib" } diff --git a/zomes/rea_proposal/zome_idx_proposal/Cargo.toml b/zomes/rea_proposal/zome_idx_proposal/Cargo.toml index 1e88af755..2fdd99a40 100644 --- a/zomes/rea_proposal/zome_idx_proposal/Cargo.toml +++ b/zomes/rea_proposal/zome_idx_proposal/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_proposed_intent/integrity_zome/Cargo.toml b/zomes/rea_proposed_intent/integrity_zome/Cargo.toml index c38e5ca26..84abe4145 100644 --- a/zomes/rea_proposed_intent/integrity_zome/Cargo.toml +++ b/zomes/rea_proposed_intent/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_proposed_intent_storage = { path = "../storage" } diff --git a/zomes/rea_proposed_intent/lib/Cargo.toml b/zomes/rea_proposed_intent/lib/Cargo.toml index dc11616b3..1d0de31f1 100644 --- a/zomes/rea_proposed_intent/lib/Cargo.toml +++ b/zomes/rea_proposed_intent/lib/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] paste = "1.0" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_proposed_intent/rpc/Cargo.toml b/zomes/rea_proposed_intent/rpc/Cargo.toml index 9419764ba..20737f4a4 100644 --- a/zomes/rea_proposed_intent/rpc/Cargo.toml +++ b/zomes/rea_proposed_intent/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_proposed_intent/storage/Cargo.toml b/zomes/rea_proposed_intent/storage/Cargo.toml index 2843d6a6b..0482b38ac 100644 --- a/zomes/rea_proposed_intent/storage/Cargo.toml +++ b/zomes/rea_proposed_intent/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_proposed_intent_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_proposed_intent/zome/Cargo.toml b/zomes/rea_proposed_intent/zome/Cargo.toml index 9e7e787c2..ae0f9f9f1 100644 --- a/zomes/rea_proposed_intent/zome/Cargo.toml +++ b/zomes/rea_proposed_intent/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_proposed_intent_rpc = { path = "../rpc" } hc_zome_rea_proposed_intent_lib = { path = "../lib" } diff --git a/zomes/rea_proposed_intent/zome_idx_proposal/Cargo.toml b/zomes/rea_proposed_intent/zome_idx_proposal/Cargo.toml index 4f02ea6f0..4d4a87a29 100644 --- a/zomes/rea_proposed_intent/zome_idx_proposal/Cargo.toml +++ b/zomes/rea_proposed_intent/zome_idx_proposal/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_proposed_to/integrity_zome/Cargo.toml b/zomes/rea_proposed_to/integrity_zome/Cargo.toml index a1b1102a7..d531fe61a 100644 --- a/zomes/rea_proposed_to/integrity_zome/Cargo.toml +++ b/zomes/rea_proposed_to/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_proposed_to_storage = { path = "../storage" } diff --git a/zomes/rea_proposed_to/lib/Cargo.toml b/zomes/rea_proposed_to/lib/Cargo.toml index 2a9fd2866..e833b9cfc 100644 --- a/zomes/rea_proposed_to/lib/Cargo.toml +++ b/zomes/rea_proposed_to/lib/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" paste = "1.0" # :TODO: remove if removing debug logging # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_proposed_to/rpc/Cargo.toml b/zomes/rea_proposed_to/rpc/Cargo.toml index 247487dbd..df77d1e72 100644 --- a/zomes/rea_proposed_to/rpc/Cargo.toml +++ b/zomes/rea_proposed_to/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_proposed_to/storage/Cargo.toml b/zomes/rea_proposed_to/storage/Cargo.toml index a778bfbc4..5649f5259 100644 --- a/zomes/rea_proposed_to/storage/Cargo.toml +++ b/zomes/rea_proposed_to/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_proposed_to_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_proposed_to/zome/Cargo.toml b/zomes/rea_proposed_to/zome/Cargo.toml index 1239c4793..45396122f 100644 --- a/zomes/rea_proposed_to/zome/Cargo.toml +++ b/zomes/rea_proposed_to/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_proposed_to_rpc = { path = "../rpc" } hc_zome_rea_proposed_to_lib = { path = "../lib" } diff --git a/zomes/rea_proposed_to/zome_idx_proposal/Cargo.toml b/zomes/rea_proposed_to/zome_idx_proposal/Cargo.toml index fa0bf5ecb..d794079c3 100644 --- a/zomes/rea_proposed_to/zome_idx_proposal/Cargo.toml +++ b/zomes/rea_proposed_to/zome_idx_proposal/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_resource_specification/integrity_zome/Cargo.toml b/zomes/rea_resource_specification/integrity_zome/Cargo.toml index 971b45058..0810f022a 100644 --- a/zomes/rea_resource_specification/integrity_zome/Cargo.toml +++ b/zomes/rea_resource_specification/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_resource_specification_storage = { path = "../storage" } diff --git a/zomes/rea_resource_specification/rpc/Cargo.toml b/zomes/rea_resource_specification/rpc/Cargo.toml index 1bca6f2bb..7e51152cd 100644 --- a/zomes/rea_resource_specification/rpc/Cargo.toml +++ b/zomes/rea_resource_specification/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_resource_specification/storage/Cargo.toml b/zomes/rea_resource_specification/storage/Cargo.toml index 93582a06c..77c419713 100644 --- a/zomes/rea_resource_specification/storage/Cargo.toml +++ b/zomes/rea_resource_specification/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_resource_specification_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_resource_specification/zome/Cargo.toml b/zomes/rea_resource_specification/zome/Cargo.toml index fa0599a17..331fa3b57 100644 --- a/zomes/rea_resource_specification/zome/Cargo.toml +++ b/zomes/rea_resource_specification/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_resource_specification_rpc = { path = "../rpc" } hc_zome_rea_resource_specification_lib = { path = "../lib" } diff --git a/zomes/rea_resource_specification/zome_idx_specification/Cargo.toml b/zomes/rea_resource_specification/zome_idx_specification/Cargo.toml index bfa996513..94a1d0670 100644 --- a/zomes/rea_resource_specification/zome_idx_specification/Cargo.toml +++ b/zomes/rea_resource_specification/zome_idx_specification/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_satisfaction/integrity_zome/Cargo.toml b/zomes/rea_satisfaction/integrity_zome/Cargo.toml index 512c9f823..9e7f56524 100644 --- a/zomes/rea_satisfaction/integrity_zome/Cargo.toml +++ b/zomes/rea_satisfaction/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_satisfaction_storage = { path = "../storage" } diff --git a/zomes/rea_satisfaction/lib/Cargo.toml b/zomes/rea_satisfaction/lib/Cargo.toml index ae594284e..6be0d54a6 100644 --- a/zomes/rea_satisfaction/lib/Cargo.toml +++ b/zomes/rea_satisfaction/lib/Cargo.toml @@ -5,7 +5,7 @@ authors = ["pospi "] edition = "2018" [dependencies] -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_satisfaction/lib_destination/Cargo.toml b/zomes/rea_satisfaction/lib_destination/Cargo.toml index b6abc1fe6..2122961b0 100644 --- a/zomes/rea_satisfaction/lib_destination/Cargo.toml +++ b/zomes/rea_satisfaction/lib_destination/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" paste = "1.0" # :TODO: remove if removing debug logging # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_satisfaction/lib_origin/Cargo.toml b/zomes/rea_satisfaction/lib_origin/Cargo.toml index 46af0bbf9..2590fb21a 100644 --- a/zomes/rea_satisfaction/lib_origin/Cargo.toml +++ b/zomes/rea_satisfaction/lib_origin/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] paste = "1.0" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } hdk_semantic_indexes_client_lib = { path = "../../../lib/hdk_semantic_indexes/client" } diff --git a/zomes/rea_satisfaction/rpc/Cargo.toml b/zomes/rea_satisfaction/rpc/Cargo.toml index 98751d67b..53a2aef60 100644 --- a/zomes/rea_satisfaction/rpc/Cargo.toml +++ b/zomes/rea_satisfaction/rpc/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" serde_bytes = "*" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" serde_maybe_undefined = { path = "../../../lib/serde_maybe_undefined" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_satisfaction/storage/Cargo.toml b/zomes/rea_satisfaction/storage/Cargo.toml index a6c0c49ed..492f6cd52 100644 --- a/zomes/rea_satisfaction/storage/Cargo.toml +++ b/zomes/rea_satisfaction/storage/Cargo.toml @@ -6,13 +6,13 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } vf_measurement = { path = "../../../lib/vf_measurement" } hc_zome_rea_satisfaction_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] diff --git a/zomes/rea_satisfaction/zome_idx_observation/Cargo.toml b/zomes/rea_satisfaction/zome_idx_observation/Cargo.toml index 41d235fdb..9047dfc24 100644 --- a/zomes/rea_satisfaction/zome_idx_observation/Cargo.toml +++ b/zomes/rea_satisfaction/zome_idx_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_satisfaction/zome_idx_planning/Cargo.toml b/zomes/rea_satisfaction/zome_idx_planning/Cargo.toml index 27d1adc68..4626cb5f4 100644 --- a/zomes/rea_satisfaction/zome_idx_planning/Cargo.toml +++ b/zomes/rea_satisfaction/zome_idx_planning/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } diff --git a/zomes/rea_satisfaction/zome_observation/Cargo.toml b/zomes/rea_satisfaction/zome_observation/Cargo.toml index 700ae3322..12443cc9d 100644 --- a/zomes/rea_satisfaction/zome_observation/Cargo.toml +++ b/zomes/rea_satisfaction/zome_observation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_satisfaction_lib_destination = { path = "../lib_destination" } hc_zome_rea_satisfaction_rpc = { path = "../rpc" } diff --git a/zomes/rea_satisfaction/zome_planning/Cargo.toml b/zomes/rea_satisfaction/zome_planning/Cargo.toml index 207faae18..4d7db2d1b 100644 --- a/zomes/rea_satisfaction/zome_planning/Cargo.toml +++ b/zomes/rea_satisfaction/zome_planning/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_satisfaction_rpc = { path = "../rpc" } hc_zome_rea_satisfaction_lib_origin = { path = "../lib_origin" } diff --git a/zomes/rea_unit/integrity_zome/Cargo.toml b/zomes/rea_unit/integrity_zome/Cargo.toml index 8529fb64c..37538f95a 100644 --- a/zomes/rea_unit/integrity_zome/Cargo.toml +++ b/zomes/rea_unit/integrity_zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdi = "=0.2.0" +hdi = "0.2.1" hc_zome_rea_unit_storage = { path = "../storage" } diff --git a/zomes/rea_unit/lib/Cargo.toml b/zomes/rea_unit/lib/Cargo.toml index e0437d97c..f73b4fe32 100644 --- a/zomes/rea_unit/lib/Cargo.toml +++ b/zomes/rea_unit/lib/Cargo.toml @@ -5,7 +5,7 @@ authors = ["pospi "] edition = "2018" [dependencies] -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_unit/rpc/Cargo.toml b/zomes/rea_unit/rpc/Cargo.toml index 09c5c3920..d88b38a7e 100644 --- a/zomes/rea_unit/rpc/Cargo.toml +++ b/zomes/rea_unit/rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.51" +holochain_serialized_bytes = "0.0.52" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } diff --git a/zomes/rea_unit/storage/Cargo.toml b/zomes/rea_unit/storage/Cargo.toml index a0be2029f..40ed0ff69 100644 --- a/zomes/rea_unit/storage/Cargo.toml +++ b/zomes/rea_unit/storage/Cargo.toml @@ -6,12 +6,12 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_records = { path = "../../../lib/hdk_records" } vf_attributes_hdk = { path = "../../../lib/vf_attributes_hdk" } hc_zome_rea_unit_rpc = { path = "../rpc" } -hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.2", package = "hc_zome_dna_auth_resolver_lib"} +hc_zome_dna_auth_resolver_core = {git = "https://github.com/holochain-open-dev/dna-auth-resolver", tag = "0.1.3", package = "hc_zome_dna_auth_resolver_lib"} [lib] crate-type = ["lib"] diff --git a/zomes/rea_unit/zome/Cargo.toml b/zomes/rea_unit/zome/Cargo.toml index baac19b22..ae4ee818f 100644 --- a/zomes/rea_unit/zome/Cargo.toml +++ b/zomes/rea_unit/zome/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] serde = "1" # :DUPE: hdk-rust-revid -hdk = "=0.1.0" +hdk = "0.1.1" hc_zome_rea_unit_rpc = { path = "../rpc" } hc_zome_rea_unit_lib = { path = "../lib" } diff --git a/zomes/rea_unit/zome_idx_specification/Cargo.toml b/zomes/rea_unit/zome_idx_specification/Cargo.toml index ed1612cdb..212ebc0fe 100644 --- a/zomes/rea_unit/zome_idx_specification/Cargo.toml +++ b/zomes/rea_unit/zome_idx_specification/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] serde = "1" -hdk = "=0.1.0" +hdk = "0.1.1" hdk_semantic_indexes_zome_lib = { path = "../../../lib/hdk_semantic_indexes/zome" } hdk_semantic_indexes_core = { path = "../../../lib/hdk_semantic_indexes/integrity_core" } From ffa44353d515ee65af94d30f92d2db6ad9efabbf Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:35:32 +1000 Subject: [PATCH 07/10] pin Holochain version ID in Nix config --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index e08d723f4..a70a65068 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,7 @@ holochain-dev = { url = "github:holochain/holochain"; inputs.versions.url = "github:holochain/holochain/?dir=versions/0_1"; + inputs.versions.inputs.holochain.url = "github:holochain/holochain/v0_1_1"; }; }; From 0d0944d6744c9e5953c739babd13baf45cb9cc6d Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:35:39 +1000 Subject: [PATCH 08/10] update lockfiles --- Cargo.lock | 584 ++++++++++++++++++++++++++++++----------------------- flake.lock | 6 +- 2 files changed, 338 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dcc19d160..058d6dd2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,11 +4,11 @@ version = 3 [[package]] name = "addr2line" -version = "0.17.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" +checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" dependencies = [ - "gimli", + "gimli 0.27.2", ] [[package]] @@ -73,7 +73,7 @@ version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "hermit-abi", + "hermit-abi 0.1.19", "libc", "winapi", ] @@ -86,24 +86,24 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.66" +version = "0.3.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" +checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" dependencies = [ "addr2line", "cc", "cfg-if", "libc", "miniz_oxide", - "object 0.29.0", + "object 0.30.3", "rustc-demangle", ] [[package]] name = "base64" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "bincode" @@ -157,9 +157,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.11.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" +checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" [[package]] name = "bytecheck" @@ -190,9 +190,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "camino" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055" +checksum = "6031a462f977dd38968b6f23378356512feeace69cef817e1a4475108093cec3" dependencies = [ "serde", ] @@ -214,7 +214,7 @@ checksum = "08a1ec454bc3eead8719cb56e15dbbfecdbc14e4b3a3ae4936cc6e31f5fc0d07" dependencies = [ "camino", "cargo-platform", - "semver 1.0.13", + "semver 1.0.16", "serde", "serde_json", "thiserror", @@ -222,9 +222,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.73" +version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" [[package]] name = "cfg-if" @@ -234,9 +234,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.22" +version = "0.4.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" +checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" dependencies = [ "iana-time-zone", "num-integer", @@ -261,6 +261,16 @@ dependencies = [ "vec_map", ] +[[package]] +name = "codespan-reporting" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +dependencies = [ + "termcolor", + "unicode-width", +] + [[package]] name = "constant_time_eq" version = "0.1.5" @@ -331,7 +341,7 @@ dependencies = [ "cranelift-codegen-meta", "cranelift-codegen-shared", "cranelift-entity", - "gimli", + "gimli 0.26.2", "log", "regalloc", "smallvec", @@ -403,26 +413,24 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.10" +version = "0.9.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" +checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" dependencies = [ "autocfg", "cfg-if", "crossbeam-utils", - "memoffset", - "once_cell", + "memoffset 0.7.1", "scopeguard", ] [[package]] name = "crossbeam-utils" -version = "0.8.11" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" +checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" dependencies = [ "cfg-if", - "once_cell", ] [[package]] @@ -435,6 +443,50 @@ dependencies = [ "typenum", ] +[[package]] +name = "cxx" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62" +dependencies = [ + "cc", + "cxxbridge-flags", + "cxxbridge-macro", + "link-cplusplus", +] + +[[package]] +name = "cxx-build" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690" +dependencies = [ + "cc", + "codespan-reporting", + "once_cell", + "proc-macro2", + "quote", + "scratch", + "syn", +] + +[[package]] +name = "cxxbridge-flags" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf" + +[[package]] +name = "cxxbridge-macro" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "darling" version = "0.13.4" @@ -447,12 +499,12 @@ dependencies = [ [[package]] name = "darling" -version = "0.14.1" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02" +checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8" dependencies = [ - "darling_core 0.14.1", - "darling_macro 0.14.1", + "darling_core 0.14.3", + "darling_macro 0.14.3", ] [[package]] @@ -471,9 +523,9 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.14.1" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f" +checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb" dependencies = [ "fnv", "ident_case", @@ -496,11 +548,11 @@ dependencies = [ [[package]] name = "darling_macro" -version = "0.14.1" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5" +checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685" dependencies = [ - "darling_core 0.14.1", + "darling_core 0.14.3", "quote", "syn", ] @@ -530,9 +582,9 @@ dependencies = [ [[package]] name = "either" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" +checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "enum-iterator" @@ -556,20 +608,20 @@ dependencies = [ [[package]] name = "enumset" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4799cdb24d48f1f8a7a98d06b7fde65a85a2d1e42b25a889f5406aa1fbefe074" +checksum = "19be8061a06ab6f3a6cf21106c873578bf01bd42ad15e0311a9c76161cb1c753" dependencies = [ "enumset_derive", ] [[package]] name = "enumset_derive" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea83a3fbdc1d999ccfbcbee717eab36f8edf2d71693a23ce0d7cca19e085304c" +checksum = "03e7b551eba279bf0fa88b83a46330168c1560a52a94f5126f892f0b364ab3e0" dependencies = [ - "darling 0.13.4", + "darling 0.14.3", "proc-macro2", "quote", "syn", @@ -583,9 +635,9 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "fastrand" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" dependencies = [ "instant", ] @@ -620,9 +672,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" +checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" dependencies = [ "cfg-if", "libc", @@ -640,6 +692,12 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" + [[package]] name = "hashbrown" version = "0.11.2" @@ -661,10 +719,10 @@ dependencies = [ [[package]] name = "hc_zome_dna_auth_resolver" version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0#e9b1d6dae2c803a89b481764cbf1ce49a879e49b" +source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.3#9a584d4cdb9de1bb333278e357468921fd5997cb" dependencies = [ - "hc_zome_dna_auth_resolver_rpc 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0)", - "hc_zome_dna_auth_resolver_storage 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0)", + "hc_zome_dna_auth_resolver_rpc", + "hc_zome_dna_auth_resolver_storage", "hdk", "serde", ] @@ -672,16 +730,7 @@ dependencies = [ [[package]] name = "hc_zome_dna_auth_resolver_core" version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1#7c04c6ea2deed696473610f267403174a4fd0f5b" -dependencies = [ - "hdi", - "serde", -] - -[[package]] -name = "hc_zome_dna_auth_resolver_core" -version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0#e9b1d6dae2c803a89b481764cbf1ce49a879e49b" +source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.3#9a584d4cdb9de1bb333278e357468921fd5997cb" dependencies = [ "hdi", "serde", @@ -697,11 +746,11 @@ dependencies = [ [[package]] name = "hc_zome_dna_auth_resolver_lib" version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1#7c04c6ea2deed696473610f267403174a4fd0f5b" +source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.3#9a584d4cdb9de1bb333278e357468921fd5997cb" dependencies = [ - "hc_zome_dna_auth_resolver_core 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1)", - "hc_zome_dna_auth_resolver_rpc 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1)", - "hc_zome_dna_auth_resolver_storage 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1)", + "hc_zome_dna_auth_resolver_core", + "hc_zome_dna_auth_resolver_rpc", + "hc_zome_dna_auth_resolver_storage", "hdk", "holo_hash", "serde", @@ -710,18 +759,7 @@ dependencies = [ [[package]] name = "hc_zome_dna_auth_resolver_rpc" version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1#7c04c6ea2deed696473610f267403174a4fd0f5b" -dependencies = [ - "holo_hash", - "holochain_serialized_bytes 0.0.51", - "holochain_zome_types", - "serde", -] - -[[package]] -name = "hc_zome_dna_auth_resolver_rpc" -version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0#e9b1d6dae2c803a89b481764cbf1ce49a879e49b" +source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.3#9a584d4cdb9de1bb333278e357468921fd5997cb" dependencies = [ "holo_hash", "holochain_serialized_bytes 0.0.52", @@ -732,20 +770,9 @@ dependencies = [ [[package]] name = "hc_zome_dna_auth_resolver_storage" version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1#7c04c6ea2deed696473610f267403174a4fd0f5b" -dependencies = [ - "hc_zome_dna_auth_resolver_core 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.1)", - "hdk", - "holo_hash", - "serde", -] - -[[package]] -name = "hc_zome_dna_auth_resolver_storage" -version = "0.1.0" -source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0#e9b1d6dae2c803a89b481764cbf1ce49a879e49b" +source = "git+https://github.com/holochain-open-dev/dna-auth-resolver?tag=0.1.3#9a584d4cdb9de1bb333278e357468921fd5997cb" dependencies = [ - "hc_zome_dna_auth_resolver_core 0.1.0 (git+https://github.com/holochain-open-dev/dna-auth-resolver?branch=holochain-beta-0-1-0)", + "hc_zome_dna_auth_resolver_core", "hdk", "holo_hash", "serde", @@ -822,7 +849,7 @@ version = "0.1.0" dependencies = [ "hdk", "hdk_uuid_types", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -891,7 +918,7 @@ dependencies = [ name = "hc_zome_rea_agreement_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -963,7 +990,7 @@ dependencies = [ name = "hc_zome_rea_commitment_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1051,7 +1078,7 @@ name = "hc_zome_rea_economic_event_rpc" version = "0.1.0" dependencies = [ "hdk_relay_pagination", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1151,7 +1178,7 @@ name = "hc_zome_rea_economic_resource_rpc" version = "0.1.0" dependencies = [ "hc_zome_rea_economic_event_rpc", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1289,7 +1316,7 @@ dependencies = [ name = "hc_zome_rea_fulfillment_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_bytes", "serde_maybe_undefined", @@ -1363,7 +1390,7 @@ dependencies = [ name = "hc_zome_rea_intent_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1434,7 +1461,7 @@ dependencies = [ name = "hc_zome_rea_plan_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1516,7 +1543,7 @@ dependencies = [ name = "hc_zome_rea_process_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1569,7 +1596,7 @@ dependencies = [ name = "hc_zome_rea_process_specification_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1655,7 +1682,7 @@ dependencies = [ name = "hc_zome_rea_proposal_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1725,7 +1752,7 @@ dependencies = [ name = "hc_zome_rea_proposed_intent_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "vf_attributes_hdk", ] @@ -1794,7 +1821,7 @@ dependencies = [ name = "hc_zome_rea_proposed_to_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "vf_attributes_hdk", ] @@ -1862,7 +1889,7 @@ dependencies = [ name = "hc_zome_rea_resource_specification_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_maybe_undefined", "vf_attributes_hdk", @@ -1982,7 +2009,7 @@ dependencies = [ name = "hc_zome_rea_satisfaction_rpc" version = "0.1.0" dependencies = [ - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "serde_bytes", "serde_maybe_undefined", @@ -2057,7 +2084,7 @@ name = "hc_zome_rea_unit_rpc" version = "0.1.0" dependencies = [ "hdk_records", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "vf_attributes_hdk", ] @@ -2080,9 +2107,9 @@ version = "0.1.0" [[package]] name = "hdi" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "344ddd3db53dec1352aca06ca5048d305a2c20149cf3117e9669ac567e71c109" +checksum = "8046116c32434837d28ad1b443802e2444a38d8cdb69caca9169414364fe0b69" dependencies = [ "hdk_derive", "holo_hash", @@ -2097,9 +2124,9 @@ dependencies = [ [[package]] name = "hdk" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab34bc763d15b2d91d26008487b189547da9c184b5bcd448242ac255f483443e" +checksum = "0cbecb374a53eba516cbfefaad21f4bc805f4c731b81bd800a9a9e0239004eb3" dependencies = [ "getrandom", "hdi", @@ -2117,12 +2144,12 @@ dependencies = [ [[package]] name = "hdk_derive" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "596ab116a5f8977ef7d630b065b233ab73b5cded613688a487c666f8e6e63291" +checksum = "fa8eade453438a832944ab3f4006482f6bb5693997ff58e3049f23a8f8c617a4" dependencies = [ - "darling 0.14.1", - "heck 0.4.0", + "darling 0.14.3", + "heck 0.4.1", "holochain_integrity_types", "paste", "proc-macro-error", @@ -2232,7 +2259,7 @@ dependencies = [ "chrono", "hdk_rpc_errors", "hdk_uuid_types", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", ] @@ -2268,9 +2295,9 @@ dependencies = [ [[package]] name = "heck" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" @@ -2281,6 +2308,15 @@ dependencies = [ "libc", ] +[[package]] +name = "hermit-abi" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" +dependencies = [ + "libc", +] + [[package]] name = "hex" version = "0.4.3" @@ -2289,9 +2325,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "holo_hash" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "270268effa8c72be70eeb0c3d3944f58a3885daf355cd3597300bf4b33bfee1b" +checksum = "9cffb2fb9ce1d2ce4c98d4cc9d625ddb92f6982f47094ed2e36fa93f5a096f36" dependencies = [ "base64", "blake2b_simd", @@ -2305,9 +2341,9 @@ dependencies = [ [[package]] name = "holochain_integrity_types" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3cf7e728e70ab5aac0c89e437879ee529894d6aa2b6d6ca5d59527fda38157" +checksum = "b0630a221701e40ddf0fb369ead8eb6e18e3ec84241b3c77f803ea137930017b" dependencies = [ "holo_hash", "holochain_serialized_bytes 0.0.51", @@ -2400,9 +2436,9 @@ dependencies = [ [[package]] name = "holochain_zome_types" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9725c45ba4fff602c0ac548945ddbb44cb255ee934336efd43262fff8bec8e49" +checksum = "df99af259b89d8309121d2a81852f8e468dc587332ce59a93130f4e1149758b4" dependencies = [ "holo_hash", "holochain_integrity_types", @@ -2428,18 +2464,28 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.48" +version = "0.1.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "237a0714f28b1ee39ccec0770ccb544eb02c9ef2c82bb096230eefcffa6468b0" +checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" dependencies = [ "android_system_properties", "core-foundation-sys", + "iana-time-zone-haiku", "js-sys", - "once_cell", "wasm-bindgen", "winapi", ] +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" +dependencies = [ + "cxx", + "cxx-build", +] + [[package]] name = "ident_case" version = "1.0.1" @@ -2454,9 +2500,9 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] name = "indexmap" -version = "1.9.1" +version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" dependencies = [ "autocfg", "hashbrown 0.12.3", @@ -2487,15 +2533,15 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.3" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" +checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" [[package]] name = "js-sys" -version = "0.3.60" +version = "0.3.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" dependencies = [ "wasm-bindgen", ] @@ -2538,25 +2584,34 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" [[package]] name = "libc" -version = "0.2.132" +version = "0.2.139" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" +checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" [[package]] name = "libloading" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ "cfg-if", "winapi", ] +[[package]] +name = "link-cplusplus" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" +dependencies = [ + "cc", +] + [[package]] name = "lock_api" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390" +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" dependencies = [ "autocfg", "scopeguard", @@ -2609,9 +2664,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "memmap2" -version = "0.5.7" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95af15f345b17af2efc8ead6080fb8bc376f8cec1b35277b935637595fe77498" +checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" dependencies = [ "libc", ] @@ -2625,11 +2680,20 @@ dependencies = [ "autocfg", ] +[[package]] +name = "memoffset" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" +dependencies = [ + "autocfg", +] + [[package]] name = "miniz_oxide" -version = "0.5.4" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" +checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" dependencies = [ "adler", ] @@ -2661,11 +2725,11 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.13.1" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" dependencies = [ - "hermit-abi", + "hermit-abi 0.2.6", "libc", ] @@ -2683,18 +2747,18 @@ dependencies = [ [[package]] name = "object" -version = "0.29.0" +version = "0.30.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" +checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" dependencies = [ "memchr", ] [[package]] name = "once_cell" -version = "1.14.0" +version = "1.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" +checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" [[package]] name = "parking_lot" @@ -2708,15 +2772,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.5" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba" +checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-sys 0.42.0", + "windows-sys 0.45.0", ] [[package]] @@ -2727,9 +2791,9 @@ checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58" [[package]] name = "pest" -version = "2.4.0" +version = "2.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a" +checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660" dependencies = [ "thiserror", "ucd-trie", @@ -2767,9 +2831,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.43" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" +checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" dependencies = [ "unicode-ident", ] @@ -2796,30 +2860,28 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.21" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" +checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" dependencies = [ "proc-macro2", ] [[package]] name = "rayon" -version = "1.5.3" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" +checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" dependencies = [ - "autocfg", - "crossbeam-deque", "either", "rayon-core", ] [[package]] name = "rayon-core" -version = "1.9.3" +version = "1.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" +checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" dependencies = [ "crossbeam-channel", "crossbeam-deque", @@ -2887,18 +2949,18 @@ dependencies = [ [[package]] name = "rend" -version = "0.3.6" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95" +checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" dependencies = [ "bytecheck", ] [[package]] name = "rkyv" -version = "0.7.39" +version = "0.7.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15" +checksum = "c30f1d45d9aa61cbc8cd1eb87705470892289bb2d01943e7803b873a57404dc3" dependencies = [ "bytecheck", "hashbrown 0.12.3", @@ -2910,9 +2972,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.39" +version = "0.7.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4" +checksum = "ff26ed6c7c4dfc2aa9480b86a60e3c7233543a270a680e10758a507c5a4ce476" dependencies = [ "proc-macro2", "quote", @@ -2959,20 +3021,20 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ - "semver 1.0.13", + "semver 1.0.16", ] [[package]] name = "rustversion" -version = "1.0.9" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" +checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" [[package]] name = "ryu" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" +checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" [[package]] name = "same-file" @@ -2989,6 +3051,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +[[package]] +name = "scratch" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" + [[package]] name = "seahash" version = "4.1.0" @@ -3006,9 +3074,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.13" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" +checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" dependencies = [ "serde", ] @@ -3024,9 +3092,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.144" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" dependencies = [ "serde_derive", ] @@ -3042,18 +3110,18 @@ dependencies = [ [[package]] name = "serde_bytes" -version = "0.11.7" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b" +checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.144" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" +checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" dependencies = [ "proc-macro2", "quote", @@ -3062,9 +3130,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.85" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" +checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" dependencies = [ "indexmap", "itoa", @@ -3093,9 +3161,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" [[package]] name = "stable_deref_trait" @@ -3139,7 +3207,7 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" dependencies = [ - "heck 0.4.0", + "heck 0.4.1", "proc-macro2", "quote", "rustversion", @@ -3164,9 +3232,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "1.0.99" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" +checksum = "d56e159d99e6c2b93995d171050271edb50ecc5288fbc7cc17de8fdce4e58c14" dependencies = [ "proc-macro2", "quote", @@ -3175,9 +3243,9 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.4" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1" +checksum = "8ae9980cab1db3fceee2f6c6f643d5d8de2997c58ee8d25fb0cc8a9e9e7348e5" [[package]] name = "tempfile" @@ -3193,6 +3261,15 @@ dependencies = [ "winapi", ] +[[package]] +name = "termcolor" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" +dependencies = [ + "winapi-util", +] + [[package]] name = "test-fuzz" version = "3.0.4" @@ -3224,7 +3301,7 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "856bbca0314c328004691b9c0639fb198ca764d1ce0e20d4dd8b78f2697c2a6f" dependencies = [ - "darling 0.14.1", + "darling 0.14.3", "if_chain", "lazy_static", "proc-macro2", @@ -3261,18 +3338,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.35" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85" +checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.35" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783" +checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" dependencies = [ "proc-macro2", "quote", @@ -3281,9 +3358,9 @@ dependencies = [ [[package]] name = "time" -version = "0.1.44" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", @@ -3305,9 +3382,9 @@ dependencies = [ [[package]] name = "tracing" -version = "0.1.36" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ "cfg-if", "log", @@ -3318,9 +3395,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.22" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" +checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" dependencies = [ "proc-macro2", "quote", @@ -3329,9 +3406,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.29" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" dependencies = [ "once_cell", "valuable", @@ -3357,15 +3434,15 @@ checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" [[package]] name = "unicode-ident" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd" +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" [[package]] name = "unicode-segmentation" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" @@ -3431,7 +3508,7 @@ version = "0.1.0" dependencies = [ "hdk", "hdk_records", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "serde", "vf_attributes_hdk", ] @@ -3461,9 +3538,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -3471,9 +3548,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" dependencies = [ "bumpalo", "log", @@ -3486,9 +3563,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -3496,9 +3573,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" dependencies = [ "proc-macro2", "quote", @@ -3509,15 +3586,15 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" +checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" [[package]] name = "wasm-encoder" -version = "0.16.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d443c5a7daae71697d97ec12ad70b4fe8766d3a0f4db16158ac8b781365892f7" +checksum = "68f7d56227d910901ce12dfd19acc40c12687994dfb3f57c90690f80be946ec5" dependencies = [ "leb128", ] @@ -3589,7 +3666,7 @@ dependencies = [ "cranelift-codegen", "cranelift-entity", "cranelift-frontend", - "gimli", + "gimli 0.26.2", "loupe", "more-asserts", "rayon", @@ -3741,7 +3818,7 @@ dependencies = [ "libc", "loupe", "mach", - "memoffset", + "memoffset 0.6.5", "more-asserts", "region", "rkyv", @@ -3761,9 +3838,9 @@ checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a" [[package]] name = "wast" -version = "46.0.0" +version = "54.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0ab19660e3ea6891bba69167b9be40fad00fb1fe3dd39c5eebcee15607131b" +checksum = "3d48d9d731d835f4f8dacbb8de7d47be068812cb9877f5c60d408858778d8d2a" dependencies = [ "leb128", "memchr", @@ -3773,18 +3850,18 @@ dependencies = [ [[package]] name = "wat" -version = "1.0.48" +version = "1.0.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f775282def4d5bffd94d60d6ecd57bfe6faa46171cdbf8d32bd5458842b1e3e" +checksum = "d1db2e3ed05ea31243761439194bec3af6efbbaf87c4c8667fb879e4f23791a0" dependencies = [ "wast", ] [[package]] name = "which" -version = "4.3.0" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" +checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" dependencies = [ "either", "libc", @@ -3837,24 +3914,33 @@ dependencies = [ [[package]] name = "windows-sys" -version = "0.42.0" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" +checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" dependencies = [ "windows_aarch64_gnullvm", - "windows_aarch64_msvc 0.42.0", - "windows_i686_gnu 0.42.0", - "windows_i686_msvc 0.42.0", - "windows_x86_64_gnu 0.42.0", + "windows_aarch64_msvc 0.42.1", + "windows_i686_gnu 0.42.1", + "windows_i686_msvc 0.42.1", + "windows_x86_64_gnu 0.42.1", "windows_x86_64_gnullvm", - "windows_x86_64_msvc 0.42.0", + "windows_x86_64_msvc 0.42.1", ] [[package]] name = "windows_aarch64_gnullvm" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" +checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" [[package]] name = "windows_aarch64_msvc" @@ -3864,9 +3950,9 @@ checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807" [[package]] name = "windows_aarch64_msvc" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" +checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" [[package]] name = "windows_i686_gnu" @@ -3876,9 +3962,9 @@ checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e" [[package]] name = "windows_i686_gnu" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" +checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" [[package]] name = "windows_i686_msvc" @@ -3888,9 +3974,9 @@ checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0" [[package]] name = "windows_i686_msvc" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" +checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" [[package]] name = "windows_x86_64_gnu" @@ -3900,15 +3986,15 @@ checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784" [[package]] name = "windows_x86_64_gnu" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" +checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" [[package]] name = "windows_x86_64_gnullvm" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" +checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" [[package]] name = "windows_x86_64_msvc" @@ -3918,6 +4004,6 @@ checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa" [[package]] name = "windows_x86_64_msvc" -version = "0.42.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" +checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" diff --git a/flake.lock b/flake.lock index a298b3a4c..b3b795a44 100644 --- a/flake.lock +++ b/flake.lock @@ -400,11 +400,11 @@ }, "locked": { "dir": "versions/0_1", - "lastModified": 1677114229, - "narHash": "sha256-OOanazFU6bIsby1z+hfNIp6v3d5sSLZicH9kPpX0qdo=", + "lastModified": 1677142681, + "narHash": "sha256-CwkU9JwRzcCF2U1yR8pdS758MTHhpDPBJf/I530A/xA=", "owner": "holochain", "repo": "holochain", - "rev": "2519b37cc813c4d6961d46c5a0ff8cd2a73d1783", + "rev": "8212201046d01438a22ed5949b3f439a1a58ad9f", "type": "github" }, "original": { From 251baedb0a6e8b5e2613e872345e45ed2fcb3596 Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:41:35 +1000 Subject: [PATCH 09/10] fix ambiguous import in vf_measurement lib now that internal HC crates have been re-merged --- lib/vf_attributes_hdk/Cargo.toml | 2 +- lib/vf_measurement/Cargo.toml | 1 - lib/vf_measurement/src/lib.rs | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/vf_attributes_hdk/Cargo.toml b/lib/vf_attributes_hdk/Cargo.toml index 807ef3713..ca47fe346 100644 --- a/lib/vf_attributes_hdk/Cargo.toml +++ b/lib/vf_attributes_hdk/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] } serde = "1" -holochain_serialized_bytes = "=0.0.51" +holochain_serialized_bytes = "0.0.52" holochain_zome_types = { version = "0.1.1", default-features = false } holo_hash = "0.1.1" diff --git a/lib/vf_measurement/Cargo.toml b/lib/vf_measurement/Cargo.toml index 193ec02f8..5bbe3138d 100644 --- a/lib/vf_measurement/Cargo.toml +++ b/lib/vf_measurement/Cargo.toml @@ -6,7 +6,6 @@ edition = "2018" [dependencies] serde = "1" -holochain_serialized_bytes = "0.0.52" vf_attributes_hdk = { path = "../vf_attributes_hdk" } hdk_records = { path = "../hdk_records"} diff --git a/lib/vf_measurement/src/lib.rs b/lib/vf_measurement/src/lib.rs index d7032697d..57aa8cba2 100644 --- a/lib/vf_measurement/src/lib.rs +++ b/lib/vf_measurement/src/lib.rs @@ -4,7 +4,6 @@ * @package hREA * @since 2019-05-09 */ -use holochain_serialized_bytes::prelude::*; use vf_attributes_hdk::UnitId; use hdk_records::{RecordAPIResult, DataIntegrityError}; use hdk::prelude::*; From c6193e7744edf67e6d8e7fed76ad4ed7054218ab Mon Sep 17 00:00:00 2001 From: pospi Date: Thu, 23 Feb 2023 21:42:07 +1000 Subject: [PATCH 10/10] update lockfile --- Cargo.lock | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 058d6dd2e..44d810878 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3497,7 +3497,7 @@ dependencies = [ "hdk_semantic_indexes_zome_rpc", "hdk_uuid_types", "holo_hash", - "holochain_serialized_bytes 0.0.51", + "holochain_serialized_bytes 0.0.52", "holochain_zome_types", "serde", ] @@ -3508,7 +3508,6 @@ version = "0.1.0" dependencies = [ "hdk", "hdk_records", - "holochain_serialized_bytes 0.0.52", "serde", "vf_attributes_hdk", ]