Skip to content

Commit

Permalink
apply develop versions to changed crates
Browse files Browse the repository at this point in the history
the following crates changed since their most recent release
and are therefore increased to a develop version:

- kitsune_p2p-0.0.42-dev.0
- holochain_cli-0.0.52-dev.0
- holochain_cli_bundle-0.0.48-dev.0
- holochain_conductor_api-0.0.54-dev.0
- holochain_cascade-0.0.55-dev.0
- holochain_p2p-0.0.52-dev.0
- kitsune_p2p_proxy-0.0.30-dev.0
- kitsune_p2p_types-0.0.30-dev.0
- kitsune_p2p_transport_quic-0.0.30-dev.0
- holochain-0.0.155-dev.0
- holochain_cli_sandbox-0.0.48-dev.0
- hdi-0.0.19-dev.0
- holochain_test_wasm_common-0.0.48-dev.0
- hdk_derive-0.0.45-dev.0
- holochain_wasm_test_utils-0.0.54-dev.0
- holochain_keystore-0.0.51-dev.0
- holochain_sqlite-0.0.50-dev.0
- holochain_state-0.0.54-dev.0
- holochain_types-0.0.52-dev.0
- hdk-0.0.147-dev.0
  • Loading branch information
Holochain Core Dev Team committed Aug 20, 2022
1 parent d75883c commit aaec7ce
Show file tree
Hide file tree
Showing 23 changed files with 84 additions and 84 deletions.
6 changes: 3 additions & 3 deletions crates/hc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli"
version = "0.0.51"
version = "0.0.52-dev.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cli"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
Expand All @@ -21,8 +21,8 @@ path = "src/lib.rs"
[dependencies]
anyhow = "1.0"
futures = "0.3"
holochain_cli_bundle = { path = "../hc_bundle", version = "0.0.47"}
holochain_cli_sandbox = { path = "../hc_sandbox", version = "0.0.47"}
holochain_cli_bundle = { path = "../hc_bundle", version = "0.0.48-dev.0"}
holochain_cli_sandbox = { path = "../hc_sandbox", version = "0.0.48-dev.0"}
observability = "0.1.3"
structopt = "0.3"
tokio = { version = "1.11", features = [ "full" ] }
4 changes: 2 additions & 2 deletions crates/hc_bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli_bundle"
version = "0.0.47"
version = "0.0.48-dev.0"
description = "DNA and hApp bundling functionality for the `hc` Holochain CLI utility"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -22,7 +22,7 @@ path = "src/bin/hc-dna.rs"
anyhow = "1.0"
holochain_util = { path = "../holochain_util", features = ["backtrace"], version = "0.0.11"}
holochain_serialized_bytes = "=0.0.51"
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
mr_bundle = {version = "0.0.15", path = "../mr_bundle"}
serde = { version = "1.0", features = [ "derive" ] }
serde_bytes = "0.11"
Expand Down
8 changes: 4 additions & 4 deletions crates/hc_sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli_sandbox"
version = "0.0.47"
version = "0.0.48-dev.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cli_sandbox"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
Expand All @@ -19,10 +19,10 @@ anyhow = "1.0"
ansi_term = "0.12"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
futures = "0.3"
holochain_conductor_api = { path = "../holochain_conductor_api", version = "0.0.53"}
holochain_types = { path = "../holochain_types", version = "0.0.51"}
holochain_conductor_api = { path = "../holochain_conductor_api", version = "0.0.54-dev.0"}
holochain_types = { path = "../holochain_types", version = "0.0.52-dev.0"}
holochain_websocket = { path = "../holochain_websocket", version = "0.0.39"}
holochain_p2p = { path = "../holochain_p2p", version = "0.0.51"}
holochain_p2p = { path = "../holochain_p2p", version = "0.0.52-dev.0"}
holochain_util = { version = "0.0.11", path = "../holochain_util", features = [ "pw" ] }
nanoid = "0.3"
observability = "0.1.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/hdi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdi"
version = "0.0.18"
version = "0.0.19-dev.0"
description = "The HDI"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain/tree/develop/crates/hdi"
Expand All @@ -23,7 +23,7 @@ test_utils = [
]

[dependencies]
hdk_derive = { version = "0.0.44", path = "../hdk_derive" }
hdk_derive = { version = "0.0.45-dev.0", path = "../hdk_derive" }
holo_hash = { version = "0.0.31", path = "../holo_hash" }
holochain_wasmer_guest = "=0.0.80"
# it's important that we depend on holochain_integrity_types with no default
Expand Down
6 changes: 3 additions & 3 deletions crates/hdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdk"
version = "0.0.146"
version = "0.0.147-dev.0"
description = "The Holochain HDK"
license = "CAL-1.0"
homepage = "https://github.com/holochain/holochain/tree/develop/crates/hdk"
Expand All @@ -27,8 +27,8 @@ test_utils = [
properties = ["holochain_zome_types/properties"]

[dependencies]
hdi = { version = "0.0.18", path = "../hdi", features = ["trace"] }
hdk_derive = { version = "0.0.44", path = "../hdk_derive" }
hdi = { version = "0.0.19-dev.0", path = "../hdi", features = ["trace"] }
hdk_derive = { version = "0.0.45-dev.0", path = "../hdk_derive" }
holo_hash = { version = "0.0.31", path = "../holo_hash" }
holochain_wasmer_guest = "=0.0.80"
# it's important that we depend on holochain_zome_types with no default
Expand Down
2 changes: 1 addition & 1 deletion crates/hdk_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdk_derive"
version = "0.0.44"
version = "0.0.45-dev.0"
description = "derive macros for the holochain hdk"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
Expand Down
32 changes: 16 additions & 16 deletions crates/holochain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain"
version = "0.0.154"
version = "0.0.155-dev.0"
description = "Holochain, a framework for distributed applications"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -24,20 +24,20 @@ futures = "0.3.1"
getrandom = "0.2.7"
ghost_actor = "0.3.0-alpha.4"
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["full"] }
holochain_cascade = { version = "0.0.54", path = "../holochain_cascade" }
holochain_conductor_api = { version = "0.0.53", path = "../holochain_conductor_api" }
holochain_keystore = { version = "0.0.50", path = "../holochain_keystore" }
holochain_p2p = { version = "0.0.51", path = "../holochain_p2p" }
holochain_sqlite = { version = "0.0.49", path = "../holochain_sqlite" }
holochain_cascade = { version = "0.0.55-dev.0", path = "../holochain_cascade" }
holochain_conductor_api = { version = "0.0.54-dev.0", path = "../holochain_conductor_api" }
holochain_keystore = { version = "0.0.51-dev.0", path = "../holochain_keystore" }
holochain_p2p = { version = "0.0.52-dev.0", path = "../holochain_p2p" }
holochain_sqlite = { version = "0.0.50-dev.0", path = "../holochain_sqlite" }
holochain_serialized_bytes = "=0.0.51"
holochain_state = { version = "0.0.53", path = "../holochain_state" }
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_state = { version = "0.0.54-dev.0", path = "../holochain_state" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
holochain_wasmer_host = "=0.0.80"
holochain_websocket = { version = "0.0.39", path = "../holochain_websocket" }
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types", features = ["full"] }
human-panic = "1.0.3"
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p_types = { version = "0.0.29", path = "../kitsune_p2p/types" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p_types = { version = "0.0.30-dev.0", path = "../kitsune_p2p/types" }
lazy_static = "1.4.0"
mockall = "0.10.2"
mr_bundle = { version = "0.0.15", path = "../mr_bundle" }
Expand Down Expand Up @@ -74,15 +74,15 @@ url = "1.7.2"
url2 = "0.0.6"
url_serde = "0.2.0"
uuid = { version = "0.7", features = [ "serde", "v4" ] }
holochain_wasm_test_utils = { version = "0.0.53", path = "../test_utils/wasm" }
holochain_wasm_test_utils = { version = "0.0.54-dev.0", path = "../test_utils/wasm" }
tiny-keccak = { version = "2.0.2", features = ["keccak", "sha3"] }
async-recursion = "0.3"
wasmer-middlewares = "=2.2.0"

# Dependencies for test_utils: keep in sync with below
hdk = { version = "0.0.146", path = "../hdk", optional = true }
hdk = { version = "0.0.147-dev.0", path = "../hdk", optional = true }
matches = {version = "0.1.8", optional = true }
holochain_test_wasm_common = { version = "0.0.47", path = "../test_utils/wasm_common", optional = true }
holochain_test_wasm_common = { version = "0.0.48-dev.0", path = "../test_utils/wasm_common", optional = true }
unwrap_to = { version = "0.1.0", optional = true }
itertools = { version = "0.10", optional = false }

Expand All @@ -103,14 +103,14 @@ serial_test = "0.4.0"
test-case = "1.2.1"

# Dependencies for test_utils: keep in sync with above
hdk = { version = "0.0.146", path = "../hdk", optional = false }
hdk = { version = "0.0.147-dev.0", path = "../hdk", optional = false }
matches = {version = "0.1.8", optional = false }
holochain_test_wasm_common = { version = "0.0.47", path = "../test_utils/wasm_common", optional = false }
holochain_test_wasm_common = { version = "0.0.48-dev.0", path = "../test_utils/wasm_common", optional = false }
unwrap_to = { version = "0.1.0", optional = false }
arbitrary = { version = "1.0", features = ["derive"] }

[build-dependencies]
hdk = { version = "0.0.146", path = "../hdk"}
hdk = { version = "0.0.147-dev.0", path = "../hdk"}
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0.51" }
toml = "0.5.6"
Expand Down
16 changes: 8 additions & 8 deletions crates/holochain_cascade/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cascade"
version = "0.0.54"
version = "0.0.55-dev.0"
description = "Logic for cascading updates to Holochain state and network interaction"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -15,17 +15,17 @@ fallible-iterator = "0.2"
fixt = { version = "0.0.14", path = "../fixt" }
futures = "0.3"
ghost_actor = "=0.3.0-alpha.4"
hdk = { version = "0.0.146", path = "../hdk" }
hdk_derive = { version = "0.0.44", path = "../hdk_derive" }
hdk = { version = "0.0.147-dev.0", path = "../hdk" }
hdk_derive = { version = "0.0.45-dev.0", path = "../hdk_derive" }
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["full"] }
holochain_sqlite = { version = "0.0.49", path = "../holochain_sqlite" }
holochain_p2p = { version = "0.0.51", path = "../holochain_p2p" }
holochain_sqlite = { version = "0.0.50-dev.0", path = "../holochain_sqlite" }
holochain_p2p = { version = "0.0.52-dev.0", path = "../holochain_p2p" }
holochain_serialized_bytes = "=0.0.51"
holochain_state = { version = "0.0.53", path = "../holochain_state" }
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_state = { version = "0.0.54-dev.0", path = "../holochain_state" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types" }
observability = "0.1.3"
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
tokio = { version = "1.11", features = ["full"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/holochain_conductor_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_conductor_api"
version = "0.0.53"
version = "0.0.54-dev.0"
description = "Message types for Holochain admin and app interface protocols"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -11,12 +11,12 @@ edition = "2021"
[dependencies]
directories = "2.0.2"
derive_more = "0.99.3"
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["full"] }
holochain_p2p = { version = "0.0.51", path = "../holochain_p2p" }
holochain_state = { version = "0.0.53", path = "../holochain_state" }
holochain_p2p = { version = "0.0.52-dev.0", path = "../holochain_p2p" }
holochain_state = { version = "0.0.54-dev.0", path = "../holochain_state" }
holochain_serialized_bytes = "=0.0.51"
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types" }
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/holochain_keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_keystore"
version = "0.0.50"
version = "0.0.51-dev.0"
description = "keystore for libsodium keypairs"
license = "CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -16,7 +16,7 @@ ghost_actor = "=0.3.0-alpha.4"
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["full"] }
holochain_serialized_bytes = "=0.0.51"
holochain_zome_types = { path = "../holochain_zome_types", version = "0.0.44"}
kitsune_p2p_types = { version = "0.0.29", path = "../kitsune_p2p/types" }
kitsune_p2p_types = { version = "0.0.30-dev.0", path = "../kitsune_p2p/types" }
nanoid = "0.4.0"
one_err = "0.0.5"
serde = { version = "1.0", features = [ "derive" ] }
Expand All @@ -28,4 +28,4 @@ tracing = "0.1"

# This is a redundant dependency.
# It's included only to set the proper feature flag for database encryption.
holochain_sqlite = { version = "0.0.49", path = "../holochain_sqlite" }
holochain_sqlite = { version = "0.0.50-dev.0", path = "../holochain_sqlite" }
10 changes: 5 additions & 5 deletions crates/holochain_p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_p2p"
version = "0.0.51"
version = "0.0.52-dev.0"
description = "holochain specific wrapper around more generic p2p module"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -17,12 +17,12 @@ fixt = { path = "../fixt", version = "0.0.14"}
futures = "0.3"
ghost_actor = "=0.3.0-alpha.4"
holo_hash = { version = "0.0.31", path = "../holo_hash" }
holochain_keystore = { version = "0.0.50", path = "../holochain_keystore" }
holochain_keystore = { version = "0.0.51-dev.0", path = "../holochain_keystore" }
holochain_serialized_bytes = "=0.0.51"
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types" }
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p_types = { version = "0.0.29", path = "../kitsune_p2p/types" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p_types = { version = "0.0.30-dev.0", path = "../kitsune_p2p/types" }
mockall = "0.10.2"
observability = "0.1.3"
rand = "0.8.5"
Expand Down
4 changes: 2 additions & 2 deletions crates/holochain_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_sqlite"
version = "0.0.49"
version = "0.0.50-dev.0"
description = "Abstractions for persistence of Holochain state via SQLite"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -26,7 +26,7 @@ futures = "0.3.1"
holo_hash = { path = "../holo_hash", features = ["rusqlite"], version = "0.0.31"}
holochain_serialized_bytes = "=0.0.51"
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types" }
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
lazy_static = "1.4.0"
once_cell = "1.4.1"
must_future = "0.1.1"
Expand Down
12 changes: 6 additions & 6 deletions crates/holochain_state/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_state"
version = "0.0.53"
version = "0.0.54-dev.0"
description = "TODO minimize deps"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -13,19 +13,19 @@ byteorder = "1.3.4"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
derive_more = "0.99.3"
either = "1.5"
holochain_sqlite = { version = "0.0.49", path = "../holochain_sqlite" }
holochain_sqlite = { version = "0.0.50-dev.0", path = "../holochain_sqlite" }
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["full"] }
fallible-iterator = "0.2.0"
futures = "0.3"
holochain_keystore = { version = "0.0.50", path = "../holochain_keystore" }
holochain_keystore = { version = "0.0.51-dev.0", path = "../holochain_keystore" }
holochain_serialized_bytes = "=0.0.51"
holochain_p2p = { version = "0.0.51", path = "../holochain_p2p" }
holochain_types = { version = "0.0.51", path = "../holochain_types" }
holochain_p2p = { version = "0.0.52-dev.0", path = "../holochain_p2p" }
holochain_types = { version = "0.0.52-dev.0", path = "../holochain_types" }
holochain_util = { version = "0.0.11", path = "../holochain_util" }
holochain_zome_types = { version = "0.0.44", path = "../holochain_zome_types", features = [
"full",
] }
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p/kitsune_p2p" }
mockall = "0.10.2"
one_err = "0.0.5"
parking_lot = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions crates/holochain_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_types"
version = "0.0.51"
version = "0.0.52-dev.0"
description = "Holochain common types"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -25,9 +25,9 @@ fixt = { path = "../fixt", version = "0.0.14"}
flate2 = "1.0.14"
futures = "0.3"
holo_hash = { version = "0.0.31", path = "../holo_hash", features = ["encoding"] }
holochain_keystore = { version = "0.0.50", path = "../holochain_keystore" }
holochain_keystore = { version = "0.0.51-dev.0", path = "../holochain_keystore" }
holochain_serialized_bytes = "=0.0.51"
holochain_sqlite = { path = "../holochain_sqlite", version = "0.0.49"}
holochain_sqlite = { path = "../holochain_sqlite", version = "0.0.50-dev.0"}
holochain_zome_types = { path = "../holochain_zome_types", version = "0.0.44", features = ["full"] }
itertools = { version = "0.10" }
kitsune_p2p_dht = { version = "0.0.3", path = "../kitsune_p2p/dht" }
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune_p2p/bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2021"
[dependencies]
clap = "=3.1.18"
futures = "0.3.15"
kitsune_p2p_types = { version = "0.0.29", path = "../types" }
kitsune_p2p_types = { version = "0.0.30-dev.0", path = "../types" }
once_cell = "1.7.2"
parking_lot = "0.11"
rand = "0.8.5"
Expand Down
8 changes: 4 additions & 4 deletions crates/kitsune_p2p/direct/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ hyper = { version = "0.14", features = ["server","http1","http2","tcp"] }
if-addrs = "0.6"
kitsune_p2p_bootstrap = { version = "0.0.12-dev.0", path = "../bootstrap" }
kitsune_p2p_direct_api = { version = "0.0.1", path = "../direct_api" }
kitsune_p2p_types = { version = "0.0.29", path = "../types" }
kitsune_p2p = { version = "0.0.41", path = "../kitsune_p2p", features = ["test_utils"] }
kitsune_p2p_transport_quic = { version = "0.0.29", path = "../transport_quic" }
kitsune_p2p_proxy = { version = "0.0.29", path = "../proxy" }
kitsune_p2p_types = { version = "0.0.30-dev.0", path = "../types" }
kitsune_p2p = { version = "0.0.42-dev.0", path = "../kitsune_p2p", features = ["test_utils"] }
kitsune_p2p_transport_quic = { version = "0.0.30-dev.0", path = "../transport_quic" }
kitsune_p2p_proxy = { version = "0.0.30-dev.0", path = "../proxy" }
rand = "0.8.5"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1", features = ["preserve_order"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/kitsune_p2p/direct_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ edition = "2021"

[dependencies]
kitsune_p2p_direct = { version = "0.0.1", path = "../direct" }
kitsune_p2p_transport_quic = { version = "0.0.29", path = "../transport_quic" }
kitsune_p2p_proxy = { version = "0.0.29", path = "../proxy" }
kitsune_p2p_transport_quic = { version = "0.0.30-dev.0", path = "../transport_quic" }
kitsune_p2p_proxy = { version = "0.0.30-dev.0", path = "../proxy" }
rand = "0.8.5"
structopt = "0.3.21"
tokio = { version = "1.11", features = ["full"] }
Expand Down
Loading

0 comments on commit aaec7ce

Please sign in to comment.