aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2023-11-09 11:46:31 +0300
committerhozan23 <hozan23@proton.me>2023-11-09 11:46:31 +0300
commitc1062fd5e22d9039d8add5c6421b767763fa1dba (patch)
treed22c39b47c1ae69d785cb88994c7ca9621bc08df
parent849d827486c75b2ab223d7b0e638dbb5b74d4d1d (diff)
delete unused dependencies from net crate
-rw-r--r--net/Cargo.toml7
-rw-r--r--p2p/Cargo.toml3
2 files changed, 2 insertions, 8 deletions
diff --git a/net/Cargo.toml b/net/Cargo.toml
index b2cab58..de9b33b 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -9,13 +9,8 @@ edition.workspace = true
karyons_core.workspace = true
smol = "1.3.0"
-async-trait = "0.1.74"
-pin-project-lite = "0.2.13"
+async-trait = "0.1.73"
log = "0.4.20"
bincode = { version="2.0.0-rc.3", features = ["derive"]}
-chrono = "0.4.30"
-rand = "0.8.5"
thiserror = "1.0.47"
-dirs = "5.0.1"
url = "2.4.1"
-
diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml
index 94fc284..98b700e 100644
--- a/p2p/Cargo.toml
+++ b/p2p/Cargo.toml
@@ -9,8 +9,8 @@ edition.workspace = true
karyons_core.workspace = true
karyons_net.workspace = true
-async-trait = "0.1.73"
smol = "1.3.0"
+async-trait = "0.1.73"
futures-util = {version = "0.3.5", features=["std"], default-features = false }
log = "0.4.20"
chrono = "0.4.30"
@@ -38,4 +38,3 @@ clap = { version = "4.4.6", features = ["derive"] }
ctrlc = "3.4.1"
easy-parallel = "3.3.1"
env_logger = "0.10.0"
-