From 364789a9e88f0ed3311e3405fa98ef21667b2e32 Mon Sep 17 00:00:00 2001 From: David Meister Date: Sun, 1 Dec 2019 08:34:38 +0400 Subject: [PATCH] Release v0.0.40-alpha1 --- CHANGELOG-UNRELEASED.md | 6 - CHANGELOG.md | 20 ++ Cargo.lock | 321 +++++++++--------- app_spec/zomes/blog/code/Cargo.toml | 2 +- app_spec/zomes/converse/code/Cargo.toml | 2 +- app_spec/zomes/simple/code/Cargo.toml | 2 +- app_spec/zomes/summer/code/Cargo.toml | 2 +- .../zomes/blog/code/Cargo.toml | 2 +- .../zomes/converse/code/Cargo.toml | 2 +- .../zomes/simple/code/Cargo.toml | 2 +- .../zomes/summer/code/Cargo.toml | 2 +- config.nix | 6 +- core_api_c_binding/Cargo.toml | 2 +- crates/cli/Cargo.toml | 14 +- crates/common/Cargo.toml | 2 +- crates/conductor_api/Cargo.toml | 8 +- crates/conductor_lib/Cargo.toml | 20 +- .../test-bridge-caller/Cargo.toml | 2 +- crates/conductor_lib/wasm-test/Cargo.toml | 2 +- crates/core/Cargo.toml | 22 +- .../src/nucleus/actions/wasm-test/Cargo.toml | 2 +- crates/core_types/Cargo.toml | 6 +- crates/dpki/Cargo.toml | 4 +- crates/hdk/Cargo.toml | 14 +- crates/hdk/wasm-test/Cargo.toml | 2 +- crates/hdk_v2/Cargo.toml | 4 +- crates/hdk_v2/wasm-test/Cargo.toml | 2 +- crates/holochain/Cargo.toml | 10 +- crates/holochain_wasm/Cargo.toml | 4 +- crates/locksmith/Cargo.toml | 2 +- crates/metrics/Cargo.toml | 4 +- crates/net/Cargo.toml | 16 +- crates/remove-dev-dependencies/Cargo.toml | 2 +- crates/sim1h/Cargo.toml | 4 +- crates/sim2h/Cargo.toml | 6 +- crates/sim2h_server/Cargo.toml | 4 +- crates/stress/Cargo.toml | 4 +- crates/trycp_server/Cargo.toml | 2 +- crates/wasm_utils/Cargo.toml | 10 +- .../wasm-test/integration-test/Cargo.toml | 2 +- test_utils/Cargo.toml | 18 +- 41 files changed, 289 insertions(+), 274 deletions(-) diff --git a/CHANGELOG-UNRELEASED.md b/CHANGELOG-UNRELEASED.md index 00669bdda7..2f730af61f 100644 --- a/CHANGELOG-UNRELEASED.md +++ b/CHANGELOG-UNRELEASED.md @@ -6,14 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Added -- Pruning the State of old/stale/history data to prevent it from using up a slowly but infinitely growing amount of memory. [#1920](https://github.com/holochain/holochain-rust/pull/1920) - ### Changed -- Exchanged [vanilla thread-pool](https://docs.rs/threadpool/1.7.1/threadpool/) with the futures executor thread-pool [from the futures crate](https://docs.rs/futures/0.3.1/futures/executor/index.html). This enables M:N Future:Thread execution which is much less wasteful than having a thread per future. Number of threads in the pool is kept at the default (of that crate) of number of CPUs. [#1915](https://github.com/holochain/holochain-rust/pull/1915) -- Replace naive timeout implementation (for network queries / direct messages) that uses a thread per timeout with a scheduled job that polls the State and sends timeout actions when needed (reduces number of used threads and thus memory footprint) [#1916](https://github.com/holochain/holochain-rust/pull/1916). -- Use the [im crate](https://docs.rs/im/14.0.0/im/) for `HashMap`s and `HashSet`s used in the redux State. This makes cloning the state much cheaper and improves over-all performance. [#1923](https://github.com/holochain/holochain-rust/pull/1923) - ### Deprecated ### Removed diff --git a/CHANGELOG.md b/CHANGELOG.md index 161695b155..6ac5aecbf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.40-alpha1] - 2019-12-01 + +### Added + +- Pruning the State of old/stale/history data to prevent it from using up a slowly but infinitely growing amount of memory. [#1920](https://github.com/holochain/holochain-rust/pull/1920) + +### Changed + +- Exchanged [vanilla thread-pool](https://docs.rs/threadpool/1.7.1/threadpool/) with the futures executor thread-pool [from the futures crate](https://docs.rs/futures/0.3.1/futures/executor/index.html). This enables M:N Future:Thread execution which is much less wasteful than having a thread per future. Number of threads in the pool is kept at the default (of that crate) of number of CPUs. [#1915](https://github.com/holochain/holochain-rust/pull/1915) +- Replace naive timeout implementation (for network queries / direct messages) that uses a thread per timeout with a scheduled job that polls the State and sends timeout actions when needed (reduces number of used threads and thus memory footprint) [#1916](https://github.com/holochain/holochain-rust/pull/1916). +- Use the [im crate](https://docs.rs/im/14.0.0/im/) for `HashMap`s and `HashSet`s used in the redux State. This makes cloning the state much cheaper and improves over-all performance. [#1923](https://github.com/holochain/holochain-rust/pull/1923) + +### Deprecated + +### Removed + +### Fixed + +### Security + ## [0.0.39-alpha4] - 2019-11-25 ### Added diff --git a/Cargo.lock b/Cargo.lock index 790445fa1e..429b753d3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -483,7 +483,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -589,7 +589,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -663,7 +663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -909,7 +909,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -933,7 +933,7 @@ dependencies = [ [[package]] name = "hc" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "assert_cmd 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -941,16 +941,16 @@ dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_common 0.0.39-alpha4", - "holochain_conductor_lib 0.0.39-alpha4", - "holochain_core 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", - "holochain_dpki 0.0.39-alpha4", + "holochain_common 0.0.40-alpha1", + "holochain_conductor_lib 0.0.40-alpha1", + "holochain_core 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", + "holochain_dpki 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_file 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_wasm_utils 0.0.39-alpha4", + "holochain_wasm_utils 0.0.40-alpha1", "ignore 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "json-patch 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", @@ -978,33 +978,33 @@ dependencies = [ [[package]] name = "hdk" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "boolinator 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_conductor_lib 0.0.39-alpha4", - "holochain_core 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", + "holochain_conductor_lib 0.0.40-alpha1", + "holochain_core 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_wasm_utils 0.0.39-alpha4", + "holochain_wasm_utils 0.0.40-alpha1", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "test_utils 0.0.39-alpha4", + "test_utils 0.0.40-alpha1", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "hdk_proc_macros" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ - "hdk 0.0.39-alpha4", + "hdk 0.0.40-alpha1", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1051,12 +1051,12 @@ dependencies = [ [[package]] name = "holochain" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ - "holochain_common 0.0.39-alpha4", - "holochain_conductor_lib 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", - "holochain_locksmith 0.0.39-alpha4", + "holochain_common 0.0.40-alpha1", + "holochain_conductor_lib 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", + "holochain_locksmith 0.0.40-alpha1", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "signal-hook 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1066,14 +1066,14 @@ dependencies = [ [[package]] name = "holochain_common" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "holochain_conductor_lib" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "boolinator 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1081,27 +1081,27 @@ dependencies = [ "colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_common 0.0.39-alpha4", - "holochain_core 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", - "holochain_dpki 0.0.39-alpha4", + "holochain_common 0.0.40-alpha1", + "holochain_core 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", + "holochain_dpki 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_logging 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_metrics 0.0.39-alpha4", - "holochain_net 0.0.39-alpha4", + "holochain_metrics 0.0.40-alpha1", + "holochain_net 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_file 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_lmdb 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_mem 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_pickle 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_wasm_utils 0.0.39-alpha4", + "holochain_wasm_utils 0.0.40-alpha1", "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", "json-patch 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-http-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1120,7 +1120,7 @@ dependencies = [ "serde_regex 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "test_utils 0.0.39-alpha4", + "test_utils 0.0.40-alpha1", "tiny_http 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1129,11 +1129,11 @@ dependencies = [ [[package]] name = "holochain_conductor_lib_api" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ - "holochain_core_types 0.0.39-alpha4", - "holochain_locksmith 0.0.39-alpha4", - "holochain_wasm_utils 0.0.39-alpha4", + "holochain_core_types 0.0.40-alpha1", + "holochain_locksmith 0.0.40-alpha1", + "holochain_wasm_utils 0.0.40-alpha1", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-lite 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1143,15 +1143,15 @@ dependencies = [ [[package]] name = "holochain_conductor_wasm" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ - "holochain_core_types 0.0.39-alpha4", + "holochain_core_types 0.0.40-alpha1", "wasm-bindgen 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "holochain_core" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1169,21 +1169,21 @@ dependencies = [ "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_common 0.0.39-alpha4", - "holochain_conductor_lib_api 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", - "holochain_dpki 0.0.39-alpha4", + "holochain_common 0.0.40-alpha1", + "holochain_conductor_lib_api 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", + "holochain_dpki 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_logging 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_metrics 0.0.39-alpha4", - "holochain_net 0.0.39-alpha4", + "holochain_metrics 0.0.40-alpha1", + "holochain_net 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_file 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_lmdb 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_mem 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_wasm_utils 0.0.39-alpha4", + "holochain_wasm_utils 0.0.40-alpha1", "im 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-lite 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1200,10 +1200,10 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sim1h 0.0.39-alpha4", + "sim1h 0.0.40-alpha1", "snowflake 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "test_utils 0.0.39-alpha4", + "test_utils 0.0.40-alpha1", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "unwrap_to 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "holochain_core_types" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1231,7 +1231,7 @@ dependencies = [ "hcid 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_logging 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1249,19 +1249,19 @@ dependencies = [ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "shrinkwraprs 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "snowflake 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "test_utils 0.0.39-alpha4", + "test_utils 0.0.40-alpha1", "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "holochain_dpki" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bip39 0.6.0-beta.1 (registry+https://github.com/rust-lang/crates.io-index)", "hcid 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_core_types 0.0.39-alpha4", + "holochain_core_types 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1309,7 +1309,7 @@ dependencies = [ [[package]] name = "holochain_locksmith" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "backtrace 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1337,11 +1337,11 @@ dependencies = [ [[package]] name = "holochain_metrics" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_logging 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1366,20 +1366,20 @@ dependencies = [ [[package]] name = "holochain_net" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "detach 0.0.19 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_common 0.0.39-alpha4", - "holochain_conductor_lib_api 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", + "holochain_common 0.0.40-alpha1", + "holochain_conductor_lib_api 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_logging 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_metrics 0.0.39-alpha4", + "holochain_metrics 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_tracing 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1399,8 +1399,8 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sim1h 0.0.39-alpha4", - "sim2h 0.0.39-alpha4", + "sim1h 0.0.40-alpha1", + "sim2h 0.0.40-alpha1", "snowflake 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "tungstenite 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "holochain_stress" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1526,7 +1526,7 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sim2h 0.0.39-alpha4", + "sim2h 0.0.40-alpha1", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "url2 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1545,11 +1545,11 @@ dependencies = [ [[package]] name = "holochain_wasm_utils" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ - "holochain_conductor_lib 0.0.39-alpha4", - "holochain_core 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", + "holochain_conductor_lib 0.0.40-alpha1", + "holochain_core 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1557,7 +1557,7 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "test_utils 0.0.39-alpha4", + "test_utils 0.0.40-alpha1", ] [[package]] @@ -1571,7 +1571,7 @@ dependencies = [ [[package]] name = "http" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1632,7 +1632,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1641,12 +1641,12 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1775,12 +1775,12 @@ dependencies = [ [[package]] name = "jsonrpc-http-server" -version = "14.0.3" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1799,7 +1799,7 @@ dependencies = [ [[package]] name = "jsonrpc-server-utils" -version = "14.0.3" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1814,11 +1814,11 @@ dependencies = [ [[package]] name = "jsonrpc-ws-server" -version = "14.0.3" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2027,7 +2027,7 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2141,9 +2141,10 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.19" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2163,7 +2164,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2173,7 +2174,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2185,7 +2186,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2522,7 +2523,7 @@ name = "parking_lot" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lock_api 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2614,7 +2615,7 @@ dependencies = [ "pest_meta 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2720,7 +2721,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3056,7 +3057,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "libflate 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3068,10 +3069,10 @@ dependencies = [ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3139,7 +3140,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3153,7 +3154,7 @@ dependencies = [ "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3173,7 +3174,7 @@ dependencies = [ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3559,14 +3560,14 @@ dependencies = [ [[package]] name = "sim1h" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "detach 0.0.19 (registry+https://github.com/rust-lang/crates.io-index)", "dynomite 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_core_types 0.0.39-alpha4", + "holochain_core_types 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_tracing 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3583,7 +3584,7 @@ dependencies = [ [[package]] name = "sim2h" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3591,9 +3592,9 @@ dependencies = [ "detach 0.0.19 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "hcid 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_core_types 0.0.39-alpha4", + "holochain_core_types 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_tracing 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3620,7 +3621,7 @@ dependencies = [ [[package]] name = "sim2h_server" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "detach 0.0.19 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3628,7 +3629,7 @@ dependencies = [ "lib3h_protocol 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sim2h 0.0.39-alpha4", + "sim2h 0.0.40-alpha1", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3759,7 +3760,7 @@ dependencies = [ "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3789,7 +3790,7 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.8" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3815,7 +3816,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3878,22 +3879,22 @@ dependencies = [ [[package]] name = "test_utils" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "hdk 0.0.39-alpha4", - "holochain_conductor_lib 0.0.39-alpha4", - "holochain_core 0.0.39-alpha4", - "holochain_core_types 0.0.39-alpha4", - "holochain_dpki 0.0.39-alpha4", + "hdk 0.0.40-alpha1", + "holochain_conductor_lib 0.0.40-alpha1", + "holochain_core 0.0.40-alpha1", + "holochain_core_types 0.0.40-alpha1", + "holochain_dpki 0.0.40-alpha1", "holochain_json_api 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", "holochain_json_derive 0.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_locksmith 0.0.39-alpha4", - "holochain_net 0.0.39-alpha4", + "holochain_locksmith 0.0.40-alpha1", + "holochain_net 0.0.40-alpha1", "holochain_persistence_api 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "holochain_wasm_utils 0.0.39-alpha4", - "jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "holochain_wasm_utils 0.0.40-alpha1", + "jsonrpc-ws-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lib3h_sodium 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3975,18 +3976,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4007,12 +4008,12 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-executor" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4046,28 +4047,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-reactor" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4079,12 +4080,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "signal-hook 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4105,9 +4106,9 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4123,18 +4124,18 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-timer" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4145,10 +4146,10 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4161,11 +4162,11 @@ dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4218,12 +4219,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "trycp_server" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4242,7 +4243,7 @@ dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "input_buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4661,7 +4662,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4678,7 +4679,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4886,7 +4887,7 @@ dependencies = [ "checksum holochain_persistence_pickle 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "a200265cba8e7c436ea7761b3ff2da3905575198bfbcd7e355bd5a455328417d" "checksum holochain_tracing 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "61624e309224fe09d17d3f0efb10dc85df5af33c5b92840b2e37c447b3caa8f4" "checksum hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "21ceb46a83a85e824ef93669c8b390009623863b5c195d1ba747292c0c72f94e" -"checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" +"checksum http 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "2790658cddc82e82b08e25176c431d7015a0adeb1718498715cbd20138a0bf68" "checksum http_req 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23fdb3445813f5f5e7fdb9d93df8f1c7e382237f2656b21c42e93e3a63e25c11" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" @@ -4905,10 +4906,10 @@ dependencies = [ "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum json-patch 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3bde23771b4f5b9900635b0415485323b6d39afa979dcd5541218d67bb9107b4" "checksum jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9b392c9e8e43a12e6b21160903f473b1066e57fe18477394a93a1efd25654003" -"checksum jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa54c4c2d88cb5e04b251a5031ba0f2ee8c6ef30970e31228955b89a80c3b611" +"checksum jsonrpc-http-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2d83d348120edee487c560b7cdd2565055d61cda053aa0d0ef0f8b6a18429048" "checksum jsonrpc-lite 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a98d245f26984add78277a5306ca0cf774863d4eddb4912b31d94ee3fa1a22d4" -"checksum jsonrpc-server-utils 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "87bc3c0a9a282211b2ec14abb3e977de33016bbec495332e9f7be858de7c5117" -"checksum jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af36a129cef77a9db8028ac7552d927e1bb7b6928cd96b23dd25cc38bff974ab" +"checksum jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95b7635e618a0edbbe0d2a2bbbc69874277c49383fcf6c3c0414491cfb517d22" +"checksum jsonrpc-ws-server 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b34faa167c3ac9705aeecb986c0da6056529f348425dbe0441db60a2c4cc41d1" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" @@ -4927,7 +4928,7 @@ dependencies = [ "checksum lmdb-rkv-sys 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7982ba0460e939e26a52ee12c8075deab0ebd44ed21881f656841b70e021b7c8" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" -"checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" +"checksum lock_api 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e57b3997725d2b60dbec1297f6c2e2957cc383db1cebd6be812163f969c7d586" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" @@ -4943,7 +4944,7 @@ dependencies = [ "checksum mime 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "dd1d63acd1b78403cc0c325605908475dd9b9a3acbf65ed8bcab97e27014afcf" "checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599" "checksum miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625" -"checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" +"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" @@ -5111,7 +5112,7 @@ dependencies = [ "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum syn 0.12.15 (registry+https://github.com/rust-lang/crates.io-index)" = "c97c05b8ebc34ddd6b967994d5c6e9852fa92f8b82b3858c39451f97346dcce5" "checksum syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b4cfac95805274c6afdb12d8f770fa2d27c045953e7b630a81801953699a9a" -"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" +"checksum syn 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "dff0acdb207ae2fe6d5976617f887eb1e35a2ba52c13c7234c790960cdad9238" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" "checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" @@ -5129,16 +5130,16 @@ dependencies = [ "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" -"checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" +"checksum tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "ca6df436c42b0c3330a82d855d2ef017cd793090ad550a6bc2184f4b933532ab" "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "88e1281e412013f1ff5787def044a9577a0bed059f451e835f1643201f8b777d" -"checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" +"checksum tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6732fe6b53c8d11178dcb77ac6d9682af27fc6d4cb87789449152e5377377146" "checksum tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296" "checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" -"checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" +"checksum tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1739638e364e558128461fc1ad84d997702c8e31c2e6b18fb99842268199e827" "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "87c5890a989fa47ecdc7bcb4c63a77a82c18f306714104b1decfd722db17b39e" diff --git a/app_spec/zomes/blog/code/Cargo.toml b/app_spec/zomes/blog/code/Cargo.toml index 9482323d6e..43f8fbd3fe 100644 --- a/app_spec/zomes/blog/code/Cargo.toml +++ b/app_spec/zomes/blog/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blog" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" diff --git a/app_spec/zomes/converse/code/Cargo.toml b/app_spec/zomes/converse/code/Cargo.toml index 80a76df147..3a4ebd8d14 100644 --- a/app_spec/zomes/converse/code/Cargo.toml +++ b/app_spec/zomes/converse/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "converse" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Julian Laubstein "] edition = "2018" diff --git a/app_spec/zomes/simple/code/Cargo.toml b/app_spec/zomes/simple/code/Cargo.toml index 0dd558e80f..d14abde948 100644 --- a/app_spec/zomes/simple/code/Cargo.toml +++ b/app_spec/zomes/simple/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Ashanti Mutinta "] edition = "2018" diff --git a/app_spec/zomes/summer/code/Cargo.toml b/app_spec/zomes/summer/code/Cargo.toml index af36e8911e..a872a64827 100644 --- a/app_spec/zomes/summer/code/Cargo.toml +++ b/app_spec/zomes/summer/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summer" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" diff --git a/app_spec_proc_macro/zomes/blog/code/Cargo.toml b/app_spec_proc_macro/zomes/blog/code/Cargo.toml index e79a40da49..cbef65f205 100644 --- a/app_spec_proc_macro/zomes/blog/code/Cargo.toml +++ b/app_spec_proc_macro/zomes/blog/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blog" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" diff --git a/app_spec_proc_macro/zomes/converse/code/Cargo.toml b/app_spec_proc_macro/zomes/converse/code/Cargo.toml index 914ede74df..0de7fb5641 100644 --- a/app_spec_proc_macro/zomes/converse/code/Cargo.toml +++ b/app_spec_proc_macro/zomes/converse/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "converse" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Julian Laubstein "] edition = "2018" diff --git a/app_spec_proc_macro/zomes/simple/code/Cargo.toml b/app_spec_proc_macro/zomes/simple/code/Cargo.toml index 258bdac3e5..f1551962d4 100644 --- a/app_spec_proc_macro/zomes/simple/code/Cargo.toml +++ b/app_spec_proc_macro/zomes/simple/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Ashanti Mutinta "] edition = "2018" diff --git a/app_spec_proc_macro/zomes/summer/code/Cargo.toml b/app_spec_proc_macro/zomes/summer/code/Cargo.toml index dd5d33b690..9226bb003d 100644 --- a/app_spec_proc_macro/zomes/summer/code/Cargo.toml +++ b/app_spec_proc_macro/zomes/summer/code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summer" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [dependencies] diff --git a/config.nix b/config.nix index 60251bf7e2..b51885ec60 100644 --- a/config.nix +++ b/config.nix @@ -1,7 +1,7 @@ let - release-commit = "7628d3827d4cf03611404c16ba039f0853b5fed1"; - current = "0.0.39-alpha4"; - previous = "0.0.39-alpha3"; + release-commit = "21cae9daf124ccdce95c260de09b8e33a20f819e"; + current = "0.0.40-alpha1"; + previous = "0.0.39-alpha4"; # tag will ultimately be current version when it hits holonix # https://github.com/holochain/holonix/blob/master/release/default.nix#L7 tag = "v${current}"; diff --git a/core_api_c_binding/Cargo.toml b/core_api_c_binding/Cargo.toml index c28852691a..59b5ec6289 100644 --- a/core_api_c_binding/Cargo.toml +++ b/core_api_c_binding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_core_api_c_binding" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index cdb11f6f3d..1a9ed07455 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -4,16 +4,16 @@ description = "holochain app scaffolding tools" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" documentation = "https://github.com/holochain/holochain-rust" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [dependencies] -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_core = { version = "=0.0.39-alpha4", path = "../core" } -holochain_common = { version = "=0.0.39-alpha4", path = "../common" } -holochain_conductor_lib = { version = "=0.0.39-alpha4", path = "../conductor_lib" } -holochain_dpki = { version = "=0.0.39-alpha4", path = "../dpki" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_core = { version = "=0.0.40-alpha1", path = "../core" } +holochain_common = { version = "=0.0.40-alpha1", path = "../common" } +holochain_conductor_lib = { version = "=0.0.40-alpha1", path = "../conductor_lib" } +holochain_dpki = { version = "=0.0.40-alpha1", path = "../dpki" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } lib3h_sodium = "=0.0.22" holochain_json_api = "=0.0.17" holochain_persistence_api = "=0.0.11" diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 94d258c148..c543a03feb 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -4,7 +4,7 @@ description = "holochain core commons" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" documentation = "https://github.com/holochain/holochain-rust" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" diff --git a/crates/conductor_api/Cargo.toml b/crates/conductor_api/Cargo.toml index 9fa29692db..071a0e3074 100644 --- a/crates/conductor_api/Cargo.toml +++ b/crates/conductor_api/Cargo.toml @@ -4,14 +4,14 @@ description = "holochain conductor lib api" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" documentation = "https://github.com/holochain/holochain-rust" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" [dependencies] -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_wasm_utils = { version = "=0.0.39-alpha4", path = "../wasm_utils" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_wasm_utils = { version = "=0.0.40-alpha1", path = "../wasm_utils" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } jsonrpc-core = "=14.0.1" jsonrpc-lite = "=0.5.0" serde = { version = "=1.0.89", features = ["rc"] } diff --git a/crates/conductor_lib/Cargo.toml b/crates/conductor_lib/Cargo.toml index 2b2002cc81..ec04bfe1d7 100644 --- a/crates/conductor_lib/Cargo.toml +++ b/crates/conductor_lib/Cargo.toml @@ -4,14 +4,14 @@ description = "holochain conductor library" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" documentation = "https://github.com/holochain/holochain-rust" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" [dependencies] -holochain_core = { version = "=0.0.39-alpha4", path = "../core" } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_core = { version = "=0.0.40-alpha1", path = "../core" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } holochain_json_derive = "=0.0.17" holochain_json_api = "=0.0.17" holochain_persistence_api = "=0.0.11" @@ -19,12 +19,12 @@ holochain_persistence_mem = "=0.0.11" holochain_persistence_file = "=0.0.11" holochain_persistence_pickle = "=0.0.11" holochain_persistence_lmdb = "=0.0.11" -holochain_dpki = { version = "=0.0.39-alpha4", path = "../dpki" } -holochain_net = { version = "=0.0.39-alpha4", path = "../net" } +holochain_dpki = { version = "=0.0.40-alpha1", path = "../dpki" } +holochain_net = { version = "=0.0.40-alpha1", path = "../net" } lib3h = "=0.0.22" lib3h_sodium = "=0.0.22" -holochain_metrics = { version = "=0.0.39-alpha4", path = "../metrics" } -holochain_common = { version = "=0.0.39-alpha4", path = "../common" } +holochain_metrics = { version = "=0.0.40-alpha1", path = "../metrics" } +holochain_common = { version = "=0.0.40-alpha1", path = "../common" } chrono = "=0.4.6" serde = "=1.0.89" serde_json = { version = "=1.0.39", features = ["preserve_order"] } @@ -54,9 +54,9 @@ nickel = "=0.11.0" url = { version = "=2.1.0", features = ["serde"] } [dev-dependencies] -test_utils = { version = "=0.0.39-alpha4", path = "../../test_utils" } +test_utils = { version = "=0.0.40-alpha1", path = "../../test_utils" } tempfile = "=3.0.7" -holochain_wasm_utils = { version = "=0.0.39-alpha4", path = "../wasm_utils" } +holochain_wasm_utils = { version = "=0.0.40-alpha1", path = "../wasm_utils" } structopt = "=0.2.15" pretty_assertions = "=0.6.1" ws = "=0.8.0" diff --git a/crates/conductor_lib/test-bridge-caller/Cargo.toml b/crates/conductor_lib/test-bridge-caller/Cargo.toml index 2b1d687241..1384f414f2 100644 --- a/crates/conductor_lib/test-bridge-caller/Cargo.toml +++ b/crates/conductor_lib/test-bridge-caller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-bridge-caller" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/conductor_lib/wasm-test/Cargo.toml b/crates/conductor_lib/wasm-test/Cargo.toml index 951aac8c51..66820e707d 100644 --- a/crates/conductor_lib/wasm-test/Cargo.toml +++ b/crates/conductor_lib/wasm-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "example_api_wasm" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 32cdec6c8f..927feb4e17 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_core" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain core" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -31,10 +31,10 @@ num-traits = "=0.2.6" num-derive = "=0.2.4" toml = "=0.5.0" -holochain_net = { version = "=0.0.39-alpha4", path = "../net" } -holochain_wasm_utils = { version = "=0.0.39-alpha4", path = "../wasm_utils" } -holochain_common = { version = "=0.0.39-alpha4", path = "../common" } -holochain_conductor_lib_api = { version = "=0.0.39-alpha4", path = "../conductor_api" } +holochain_net = { version = "=0.0.40-alpha1", path = "../net" } +holochain_wasm_utils = { version = "=0.0.40-alpha1", path = "../wasm_utils" } +holochain_common = { version = "=0.0.40-alpha1", path = "../common" } +holochain_conductor_lib_api = { version = "=0.0.40-alpha1", path = "../conductor_api" } lib3h_protocol = "=0.0.22" lib3h_sodium = "=0.0.22" holochain_json_derive = "=0.0.17" @@ -42,10 +42,10 @@ holochain_json_api = "=0.0.17" holochain_persistence_api = "=0.0.11" holochain_persistence_file = "=0.0.11" holochain_persistence_mem = "=0.0.11" -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_dpki = { version = "=0.0.39-alpha4", path = "../dpki" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } -holochain_metrics = { version = "=0.0.39-alpha4", path = "../metrics" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_dpki = { version = "=0.0.40-alpha1", path = "../dpki" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } +holochain_metrics = { version = "=0.0.40-alpha1", path = "../metrics" } log = "=0.4.8" holochain_logging = "=0.0.4" @@ -66,7 +66,7 @@ im = { version = "=14.0.0", features = ["serde"] } [dev-dependencies] wabt = "=0.7.4" -test_utils = { version = "=0.0.39-alpha4", path = "../../test_utils" } +test_utils = { version = "=0.0.40-alpha1", path = "../../test_utils" } tempfile = "=3.0.7" holochain_persistence_lmdb = "=0.0.11" -sim1h = { version = "=0.0.39-alpha4", path = "../sim1h" } +sim1h = { version = "=0.0.40-alpha1", path = "../sim1h" } diff --git a/crates/core/src/nucleus/actions/wasm-test/Cargo.toml b/crates/core/src/nucleus/actions/wasm-test/Cargo.toml index 8ec6ccc9e9..c80d5d33f3 100644 --- a/crates/core/src/nucleus/actions/wasm-test/Cargo.toml +++ b/crates/core/src/nucleus/actions/wasm-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nucleus-actions-tests" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/core_types/Cargo.toml b/crates/core_types/Cargo.toml index 3cc42536d5..23ece0e02a 100644 --- a/crates/core_types/Cargo.toml +++ b/crates/core_types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_core_types" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] build = "build.rs" description = "core types needed for all holochain development" @@ -36,7 +36,7 @@ objekt= "=0.1.2" holochain_persistence_api = "=0.0.11" holochain_json_derive = "=0.0.17" holochain_json_api = "=0.0.17" -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } uuid = { version = "=0.7.1", features = ["v4"] } regex = "=1.1.2" shrinkwraprs = "=0.2.1" @@ -47,5 +47,5 @@ log = "=0.4.8" holochain_logging = "=0.0.4" [dev-dependencies] -test_utils = { version = "=0.0.39-alpha4", path = "../../test_utils"} +test_utils = { version = "=0.0.40-alpha1", path = "../../test_utils"} maplit = "=1.0.2" diff --git a/crates/dpki/Cargo.toml b/crates/dpki/Cargo.toml index 5b2033fb9a..3e6ea49b60 100644 --- a/crates/dpki/Cargo.toml +++ b/crates/dpki/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_dpki" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain dpki" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -11,7 +11,7 @@ edition = "2018" [dependencies] lazy_static = "=1.2.0" base64 = "=0.10.1" -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } lib3h_sodium = "=0.0.22" holochain_persistence_api = "=0.0.11" serde = "=1.0.89" diff --git a/crates/hdk/Cargo.toml b/crates/hdk/Cargo.toml index 26150f676e..444e10977e 100644 --- a/crates/hdk/Cargo.toml +++ b/crates/hdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hdk" edition = "2018" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain hdk" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -14,8 +14,8 @@ serde_derive = "=1.0.89" serde_json = { version = "=1.0.39", features = ["preserve_order"] } bitflags = "=1.0.4" lazy_static = "=1.2.0" -holochain_wasm_utils = { version = "=0.0.39-alpha4", path = "../wasm_utils" } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +holochain_wasm_utils = { version = "=0.0.40-alpha1", path = "../wasm_utils" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } holochain_json_api = "=0.0.17" holochain_json_derive = "=0.0.17" holochain_persistence_api = "=0.0.11" @@ -24,9 +24,9 @@ env_logger = "=0.6.1" url = "=2.1.0" [dev-dependencies] -test_utils = { version = "=0.0.39-alpha4", path = "../../test_utils" } -holochain_conductor_lib = { version = "=0.0.39-alpha4", path = "../conductor_lib" } -holochain_core = { version = "=0.0.39-alpha4", path = "../core" } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +test_utils = { version = "=0.0.40-alpha1", path = "../../test_utils" } +holochain_conductor_lib = { version = "=0.0.40-alpha1", path = "../conductor_lib" } +holochain_core = { version = "=0.0.40-alpha1", path = "../core" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } tempfile = "=3.0.7" boolinator = "=2.4.0" diff --git a/crates/hdk/wasm-test/Cargo.toml b/crates/hdk/wasm-test/Cargo.toml index 55c03bcccc..6317b2531c 100644 --- a/crates/hdk/wasm-test/Cargo.toml +++ b/crates/hdk/wasm-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-globals" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/hdk_v2/Cargo.toml b/crates/hdk_v2/Cargo.toml index df6516ad8d..59e750b599 100644 --- a/crates/hdk_v2/Cargo.toml +++ b/crates/hdk_v2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdk_proc_macros" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain hdk v2 (with proc macros)" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -15,4 +15,4 @@ proc-macro = true syn = { version = "=0.15.31", features = ["full", "extra-traits"]} quote = "=0.6.11" proc-macro2 = "=0.4.27" -hdk = { version = "=0.0.39-alpha4", path = "../hdk" } +hdk = { version = "=0.0.40-alpha1", path = "../hdk" } diff --git a/crates/hdk_v2/wasm-test/Cargo.toml b/crates/hdk_v2/wasm-test/Cargo.toml index 0058254031..eb638bdc50 100644 --- a/crates/hdk_v2/wasm-test/Cargo.toml +++ b/crates/hdk_v2/wasm-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-proc-macro" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/crates/holochain/Cargo.toml b/crates/holochain/Cargo.toml index ff63b4e868..e3932af9e2 100644 --- a/crates/holochain/Cargo.toml +++ b/crates/holochain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -8,11 +8,11 @@ documentation = "https://github.com/holochain/holochain-rust" authors = ["Holochain Core Dev Team "] [dependencies] -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_conductor_lib = { version = "=0.0.39-alpha4", path = "../conductor_lib" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_conductor_lib = { version = "=0.0.40-alpha1", path = "../conductor_lib" } lib3h_sodium = "=0.0.22" -holochain_common = { version = "=0.0.39-alpha4", path = "../common" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_common = { version = "=0.0.40-alpha1", path = "../common" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } structopt = "=0.2.15" tiny_http = "=0.6.2" ws = "=0.8.0" diff --git a/crates/holochain_wasm/Cargo.toml b/crates/holochain_wasm/Cargo.toml index 3fe44f2147..a7b675b4c6 100644 --- a/crates/holochain_wasm/Cargo.toml +++ b/crates/holochain_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_conductor_wasm" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain wasm" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -13,5 +13,5 @@ name = "holochain_conductor_wasm" crate-type = ["cdylib"] [dependencies] -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } wasm-bindgen = "=0.2.32" diff --git a/crates/locksmith/Cargo.toml b/crates/locksmith/Cargo.toml index 62face1e14..f8eb2e6b4a 100644 --- a/crates/locksmith/Cargo.toml +++ b/crates/locksmith/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_locksmith" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" description = "helpers for mutex deadlock diagnosis" diff --git a/crates/metrics/Cargo.toml b/crates/metrics/Cargo.toml index af08704a07..b9200fc28c 100644 --- a/crates/metrics/Cargo.toml +++ b/crates/metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_metrics" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "Holochain analytics from logs and other metrics" license = "GPL-3.0-only" authors = ["Holochain Core Dev Team "] @@ -10,7 +10,7 @@ edition = "2018" shrinkwraprs = "=0.2.1" serde = { version = "=1.0.89", features = ["rc"] } serde_derive = "=1.0.89" -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } lazy_static = "=1.2.0" num-traits = "=0.2.6" num-derive = "=0.2.4" diff --git a/crates/net/Cargo.toml b/crates/net/Cargo.toml index 895121b8e0..1e9e9bc856 100644 --- a/crates/net/Cargo.toml +++ b/crates/net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_net" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain net" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -13,19 +13,19 @@ tempfile = "=3.0.7" [dependencies] failure = "=0.1.5" -sim1h = { version = "=0.0.39-alpha4", path = "../sim1h" } -sim2h = { version = "=0.0.39-alpha4", path = "../sim2h" } +sim1h = { version = "=0.0.40-alpha1", path = "../sim1h" } +sim2h = { version = "=0.0.40-alpha1", path = "../sim2h" } lib3h_sodium = "=0.0.22" lib3h_protocol = "=0.0.22" lib3h = "=0.0.22" lib3h_zombie_actor = "=0.0.22" detach = "=0.0.19" holochain_tracing = { version = "=0.0.1" } -holochain_metrics = { version = "=0.0.39-alpha4", path = "../metrics" } -holochain_common = { version = "=0.0.39-alpha4", path = "../common" } -holochain_conductor_lib_api = { version = "=0.0.39-alpha4", path = "../conductor_api" } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_metrics = { version = "=0.0.40-alpha1", path = "../metrics" } +holochain_common = { version = "=0.0.40-alpha1", path = "../common" } +holochain_conductor_lib_api = { version = "=0.0.40-alpha1", path = "../conductor_api" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } holochain_json_derive = "=0.0.17" holochain_json_api = "=0.0.17" holochain_persistence_api = "=0.0.11" diff --git a/crates/remove-dev-dependencies/Cargo.toml b/crates/remove-dev-dependencies/Cargo.toml index c29d2c7ed3..4ef922edbe 100644 --- a/crates/remove-dev-dependencies/Cargo.toml +++ b/crates/remove-dev-dependencies/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "remove-dev-dependencies" description = "adapted from futures-rs to workaround a cargo bug" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Wim Looman "] edition = "2018" publish = false diff --git a/crates/sim1h/Cargo.toml b/crates/sim1h/Cargo.toml index 5bf371edb3..83e0c5327f 100644 --- a/crates/sim1h/Cargo.toml +++ b/crates/sim1h/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim1h" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" description = "A simulation of lib3h" @@ -27,6 +27,6 @@ holochain_persistence_api = "=0.0.11" holochain_json_api = "=0.0.17" url = "=2.1.0" crossbeam-channel = "=0.3.8" -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } parking_lot = "0.9.0" snowflake = "1.3.0" diff --git a/crates/sim2h/Cargo.toml b/crates/sim2h/Cargo.toml index 11aa087179..1e7e1355d6 100644 --- a/crates/sim2h/Cargo.toml +++ b/crates/sim2h/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim2h" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" description = "A simulation of lib3h" @@ -22,8 +22,8 @@ lib3h_sodium = "=0.0.22" lib3h_protocol = "=0.0.22" lib3h_zombie_actor = "=0.0.22" holochain_tracing = "=0.0.1" -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../locksmith" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../locksmith" } uuid = { version = "0.4", features = ["v4"] } log = "=0.4.8" env_logger = "=0.6.1" diff --git a/crates/sim2h_server/Cargo.toml b/crates/sim2h_server/Cargo.toml index fe9effb8f3..16c056e30c 100644 --- a/crates/sim2h_server/Cargo.toml +++ b/crates/sim2h_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim2h_server" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" description = "A simulation of lib3h - server executable" @@ -12,7 +12,7 @@ documentation = "https://github.com/holochain/sim2h" repository = "https://github.com/holochain/sim2h" [dependencies] -sim2h = { version = "=0.0.39-alpha4", path = "../sim2h" } +sim2h = { version = "=0.0.40-alpha1", path = "../sim2h" } detach = "=0.0.19" lib3h = "=0.0.22" lib3h_protocol = "=0.0.22" diff --git a/crates/stress/Cargo.toml b/crates/stress/Cargo.toml index c624187123..d294b3305b 100644 --- a/crates/stress/Cargo.toml +++ b/crates/stress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_stress" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain stress tests" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -22,7 +22,7 @@ num_cpus = "=1.11.1" serde = "=1.0.89" serde_derive = "=1.0.89" serde_json = { version = "=1.0.39", features = ["preserve_order"] } -sim2h = { version = "=0.0.39-alpha4", path = "../sim2h" } +sim2h = { version = "=0.0.40-alpha1", path = "../sim2h" } structopt = "=0.3.3" toml = "=0.5.0" url2 = "=0.0.4" diff --git a/crates/trycp_server/Cargo.toml b/crates/trycp_server/Cargo.toml index db01e0a0b0..5c83eb9c20 100644 --- a/crates/trycp_server/Cargo.toml +++ b/crates/trycp_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trycp_server" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] edition = "2018" description = "Conductor provisioner server for try-o-rama" diff --git a/crates/wasm_utils/Cargo.toml b/crates/wasm_utils/Cargo.toml index d59650c805..6dbcf0bf3e 100644 --- a/crates/wasm_utils/Cargo.toml +++ b/crates/wasm_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_wasm_utils" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" description = "holochain wasm utils" license = "GPL-3.0-only" homepage = "https://github.com/holochain/holochain-rust" @@ -11,13 +11,13 @@ authors = ["Holochain Core Dev Team "] serde = "=1.0.89" serde_derive = "=1.0.89" serde_json = { version = "=1.0.39", features = ["preserve_order"] } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../core_types" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../core_types" } holochain_json_derive = "=0.0.17" holochain_persistence_api = "=0.0.11" holochain_json_api = "=0.0.17" [dev-dependencies] -test_utils = { version = "=0.0.39-alpha4", path = "../../test_utils" } -holochain_core = { version = "=0.0.39-alpha4", path = "../core" } -holochain_conductor_lib = { version = "=0.0.39-alpha4", path = "../conductor_lib" } +test_utils = { version = "=0.0.40-alpha1", path = "../../test_utils" } +holochain_core = { version = "=0.0.40-alpha1", path = "../core" } +holochain_conductor_lib = { version = "=0.0.40-alpha1", path = "../conductor_lib" } tempfile = "=3.0.7" diff --git a/crates/wasm_utils/wasm-test/integration-test/Cargo.toml b/crates/wasm_utils/wasm-test/integration-test/Cargo.toml index e4b70a0fcb..504cb47c1d 100644 --- a/crates/wasm_utils/wasm-test/integration-test/Cargo.toml +++ b/crates/wasm_utils/wasm-test/integration-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-integration-test" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] [lib] diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml index 9cdf2343c5..64cf1897a0 100644 --- a/test_utils/Cargo.toml +++ b/test_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_utils" -version = "0.0.39-alpha4" +version = "0.0.40-alpha1" authors = ["Holochain Core Dev Team "] description = "holochain test utils" license = "GPL-3.0-only" @@ -9,14 +9,14 @@ documentation = "https://github.com/holochain/holochain-rust" edition = "2018" [dependencies] -hdk = { version = "=0.0.39-alpha4", path = "../crates/hdk" } -holochain_net = { version = "=0.0.39-alpha4", path = "../crates/net" } -holochain_core = { version = "=0.0.39-alpha4", path = "../crates/core" } -holochain_conductor_lib = { version = "=0.0.39-alpha4", path = "../crates/conductor_lib" } -holochain_core_types = { version = "=0.0.39-alpha4", path = "../crates/core_types" } -holochain_dpki = { version = "=0.0.39-alpha4", path = "../crates/dpki" } -holochain_wasm_utils = { version = "=0.0.39-alpha4", path = "../crates/wasm_utils" } -holochain_locksmith = { version = "=0.0.39-alpha4", path = "../crates/locksmith" } +hdk = { version = "=0.0.40-alpha1", path = "../crates/hdk" } +holochain_net = { version = "=0.0.40-alpha1", path = "../crates/net" } +holochain_core = { version = "=0.0.40-alpha1", path = "../crates/core" } +holochain_conductor_lib = { version = "=0.0.40-alpha1", path = "../crates/conductor_lib" } +holochain_core_types = { version = "=0.0.40-alpha1", path = "../crates/core_types" } +holochain_dpki = { version = "=0.0.40-alpha1", path = "../crates/dpki" } +holochain_wasm_utils = { version = "=0.0.40-alpha1", path = "../crates/wasm_utils" } +holochain_locksmith = { version = "=0.0.40-alpha1", path = "../crates/locksmith" } holochain_persistence_api = "=0.0.11" holochain_json_api = "=0.0.17" holochain_json_derive = "=0.0.17"