aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--jsonrpc/Cargo.toml7
-rw-r--r--jsonrpc/jsonrpc_macro/Cargo.toml1
-rw-r--r--net/Cargo.toml2
4 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d4c73e1..881c366 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ members = ["core", "net", "p2p", "jsonrpc"]
[workspace.package]
description = "An infrastructure for peer-to-peer, decentralized, and collaborative software."
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
homepage = "https://karyontech.net"
repository = "https://github.com/karyontech/karyon"
diff --git a/jsonrpc/Cargo.toml b/jsonrpc/Cargo.toml
index 40779fe..d63e4e4 100644
--- a/jsonrpc/Cargo.toml
+++ b/jsonrpc/Cargo.toml
@@ -7,6 +7,7 @@ homepage.workspace = true
repository.workspace = true
license.workspace = true
authors.workspace = true
+readme="README.md"
[features]
@@ -29,13 +30,13 @@ tokio = [
]
[dependencies]
-karyon_core = { workspace = true, default-features = false }
-karyon_net = { workspace = true, default-features = false, features = [
+karyon_core = { version = "0.1.1", path = "../core", default-features = false }
+karyon_net = { version = "0.1.1", path = "../net", default-features = false, features = [
"tcp",
"tls",
] }
-karyon_jsonrpc_macro = { version = "0.1.0", path = "jsonrpc_macro", default-features = false }
+karyon_jsonrpc_macro = { version = "0.1.1", path = "jsonrpc_macro", default-features = false }
log = "0.4.21"
rand = "0.8.5"
diff --git a/jsonrpc/jsonrpc_macro/Cargo.toml b/jsonrpc/jsonrpc_macro/Cargo.toml
index 188aae6..969bfea 100644
--- a/jsonrpc/jsonrpc_macro/Cargo.toml
+++ b/jsonrpc/jsonrpc_macro/Cargo.toml
@@ -1,5 +1,6 @@
[package]
name = "karyon_jsonrpc_macro"
+description = "Internal crate for Karyon project."
version.workspace = true
edition.workspace = true
homepage.workspace = true
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 01a54a7..511c067 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -36,7 +36,7 @@ serde = ["dep:serde"]
[dependencies]
-karyon_core = { workspace = true, default-features = false }
+karyon_core = { version = "0.1.1", path = "../core", default-features = false }
async-trait = "0.1.77"
log = "0.4.21"