aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-07-15 13:30:43 +0200
committerhozan23 <hozan23@karyontech.net>2024-07-15 13:30:43 +0200
commitda4f7079ea53d4ea175e3bd46b892910460eae76 (patch)
tree1aad09db05f484b27fc9dce6fb9759e8db5989b0
parentdc4c448e597b08cba4c79c194b0c1aa517daab29 (diff)
bump version to 0.1.6
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml2
-rw-r--r--jsonrpc/Cargo.toml6
-rw-r--r--net/Cargo.toml4
4 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 6f3ce70..639e8ce 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1213,7 +1213,7 @@ dependencies = [
[[package]]
name = "karyon_async_rustls"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"futures-rustls",
"tokio-rustls",
@@ -1221,7 +1221,7 @@ dependencies = [
[[package]]
name = "karyon_core"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"async-channel 2.3.1",
"async-process",
@@ -1242,7 +1242,7 @@ dependencies = [
[[package]]
name = "karyon_jsonrpc"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"async-channel 2.3.1",
"async-trait",
@@ -1261,7 +1261,7 @@ dependencies = [
[[package]]
name = "karyon_jsonrpc_macro"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"proc-macro2",
"quote",
@@ -1271,7 +1271,7 @@ dependencies = [
[[package]]
name = "karyon_net"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"async-channel 2.3.1",
"async-trait",
@@ -1292,7 +1292,7 @@ dependencies = [
[[package]]
name = "karyon_p2p"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"async-channel 2.3.1",
"async-trait",
diff --git a/Cargo.toml b/Cargo.toml
index 117e29f..b74b876 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ members = ["core", "net", "p2p", "jsonrpc"]
[workspace.package]
description = "A library for building p2p, decentralized, and collaborative software"
-version = "0.1.5"
+version = "0.1.6"
edition = "2021"
homepage = "https://karyontech.net"
repository = "https://github.com/karyontech/karyon"
diff --git a/jsonrpc/Cargo.toml b/jsonrpc/Cargo.toml
index 35053cd..2260b7e 100644
--- a/jsonrpc/Cargo.toml
+++ b/jsonrpc/Cargo.toml
@@ -30,10 +30,10 @@ tokio = [
]
[dependencies]
-karyon_core = { version = "0.1.5", path = "../core", default-features = false }
-karyon_net = { version = "0.1.5", path = "../net", default-features = false }
+karyon_core = { version = "0.1.6", path = "../core", default-features = false }
+karyon_net = { version = "0.1.6", path = "../net", default-features = false }
-karyon_jsonrpc_macro = { version = "0.1.5", path = "impl", default-features = false }
+karyon_jsonrpc_macro = { version = "0.1.6", path = "impl", default-features = false }
log = "0.4.21"
rand = "0.8.5"
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 2131b46..01c7d3e 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -33,8 +33,8 @@ tokio = [
serde = ["dep:serde"]
[dependencies]
-karyon_core = { version = "0.1.5", path = "../core", default-features = false }
-karyon_async_rustls = { version = "0.1.5", path = "./async_rustls", default-features = false, optional = true }
+karyon_core = { version = "0.1.6", path = "../core", default-features = false }
+karyon_async_rustls = { version = "0.1.6", path = "./async_rustls", default-features = false, optional = true }
log = "0.4.21"
thiserror = "1.0.61"