aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-06-24 20:26:03 +0200
committerhozan23 <hozan23@karyontech.net>2024-06-24 20:26:03 +0200
commit1a3ef2d77ab54bfe286f7400ac0cee2e25ea14e3 (patch)
tree9014082443fffbfc7951c03b33caf48b3b0d6a68 /core
parentf3bb85508335eab91fbd76d15e74dcc575195acf (diff)
update dependencies
Diffstat (limited to 'core')
-rw-r--r--core/Cargo.toml28
1 files changed, 14 insertions, 14 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index ee9bf72..d30b956 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -15,23 +15,23 @@ tokio = ["dep:tokio"]
smol = ["dep:smol", "dep:async-process"]
[dependencies]
-pin-project-lite = "0.2.13"
log = "0.4.21"
-bincode = "2.0.0-rc.3"
-chrono = "0.4.35"
+thiserror = "1.0.61"
+chrono = "0.4.38"
rand = "0.8.5"
-thiserror = "1.0.58"
dirs = "5.0.1"
-async-channel = "2.2.0"
-
-# crypto feature deps
-ed25519-dalek = { version = "2.1.1", features = ["rand_core"], optional = true }
+parking_lot = "0.12.3"
+once_cell = "1.19.0"
-# smol feature deps
-async-process = { version = "2.1.0", optional = true }
+# async
+async-channel = "2.3.1"
+pin-project-lite = "0.2.14"
+async-process = { version = "2.2.3", optional = true }
smol = { version = "2.0.0", optional = true }
+tokio = { version = "1.38.0", features = ["full"], optional = true }
-# tokio feature deps
-tokio = { version = "1.37.0", features = ["full"], optional = true }
-once_cell = "1.19.0"
-parking_lot = "0.12.2"
+# encode
+bincode = "2.0.0-rc.3"
+
+# crypto
+ed25519-dalek = { version = "2.1.1", features = ["rand_core"], optional = true }