summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/system_action/Cargo.toml6
-rw-r--r--crates/system_action/action_macros/Cargo.toml4
-rw-r--r--crates/utils/cfg_file/Cargo.toml10
-rw-r--r--crates/utils/cfg_file/cfg_file_test/Cargo.toml4
-rw-r--r--crates/utils/tcp_connection/Cargo.toml12
-rw-r--r--crates/utils/tcp_connection/tcp_connection_test/Cargo.toml4
-rw-r--r--crates/vcs_actions/Cargo.toml8
-rw-r--r--crates/vcs_data/Cargo.toml4
-rw-r--r--crates/vcs_data/vcs_data_test/Cargo.toml2
9 files changed, 27 insertions, 27 deletions
diff --git a/crates/system_action/Cargo.toml b/crates/system_action/Cargo.toml
index 54ae454..b4b98aa 100644
--- a/crates/system_action/Cargo.toml
+++ b/crates/system_action/Cargo.toml
@@ -8,8 +8,8 @@ tcp_connection = { path = "../utils/tcp_connection" }
action_system_macros = { path = "action_macros" }
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
-serde_json = "1.0.140"
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.145"
# Async & Networking
-tokio = { version = "1.46.1", features = ["full"] }
+tokio = "1.48.0"
diff --git a/crates/system_action/action_macros/Cargo.toml b/crates/system_action/action_macros/Cargo.toml
index 869dcde..ee7d93b 100644
--- a/crates/system_action/action_macros/Cargo.toml
+++ b/crates/system_action/action_macros/Cargo.toml
@@ -15,5 +15,5 @@ quote = "1.0"
proc-macro2 = "1.0"
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
-serde_json = "1.0.140"
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.145"
diff --git a/crates/utils/cfg_file/Cargo.toml b/crates/utils/cfg_file/Cargo.toml
index c3bb4a4..7c09892 100644
--- a/crates/utils/cfg_file/Cargo.toml
+++ b/crates/utils/cfg_file/Cargo.toml
@@ -11,12 +11,12 @@ derive = []
cfg_file_derive = { path = "cfg_file_derive" }
# Async
-tokio = { version = "1.46.1", features = ["full"] }
-async-trait = "0.1.88"
+tokio = { version = "1.48.0", features = ["full"] }
+async-trait = "0.1.89"
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
+serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
-serde_json = "1.0.140"
+serde_json = "1.0.145"
ron = "0.11.0"
-toml = "0.9.0"
+toml = "0.9.8"
diff --git a/crates/utils/cfg_file/cfg_file_test/Cargo.toml b/crates/utils/cfg_file/cfg_file_test/Cargo.toml
index d1b527a..5db1010 100644
--- a/crates/utils/cfg_file/cfg_file_test/Cargo.toml
+++ b/crates/utils/cfg_file/cfg_file_test/Cargo.toml
@@ -5,5 +5,5 @@ edition = "2024"
[dependencies]
cfg_file = { path = "../../cfg_file", features = ["default"] }
-tokio = { version = "1.46.1", features = ["full"] }
-serde = { version = "1.0.219", features = ["derive"] }
+tokio = { version = "1.48.0", features = ["full"] }
+serde = { version = "1.0.228", features = ["derive"] }
diff --git a/crates/utils/tcp_connection/Cargo.toml b/crates/utils/tcp_connection/Cargo.toml
index 8d62a26..da258be 100644
--- a/crates/utils/tcp_connection/Cargo.toml
+++ b/crates/utils/tcp_connection/Cargo.toml
@@ -4,15 +4,15 @@ edition = "2024"
version.workspace = true
[dependencies]
-tokio = { version = "1.46.1", features = ["full"] }
+tokio = { version = "1.48.0", features = ["full"] }
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
-serde_json = "1.0.140"
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.145"
rmp-serde = "1.3.0"
# Error handling
-thiserror = "1.0.69"
+thiserror = "2.0.17"
# Uuid & Random
uuid = "1.18.1"
@@ -23,6 +23,6 @@ ed25519-dalek = "3.0.0-pre.1"
ring = "0.17.14"
rand = "0.10.0-rc.0"
base64 = "0.22.1"
-pem = "3.0.5"
+pem = "3.0.6"
crc = "3.3.0"
-blake3 = "1.5.0"
+blake3 = "1.8.2"
diff --git a/crates/utils/tcp_connection/tcp_connection_test/Cargo.toml b/crates/utils/tcp_connection/tcp_connection_test/Cargo.toml
index 397f13a..19a6e9b 100644
--- a/crates/utils/tcp_connection/tcp_connection_test/Cargo.toml
+++ b/crates/utils/tcp_connection/tcp_connection_test/Cargo.toml
@@ -5,5 +5,5 @@ version.workspace = true
[dependencies]
tcp_connection = { path = "../../tcp_connection" }
-tokio = { version = "1.46.1", features = ["full"] }
-serde = { version = "1.0.219", features = ["derive"] }
+tokio = { version = "1.48.0", features = ["full"] }
+serde = { version = "1.0.228", features = ["derive"] }
diff --git a/crates/vcs_actions/Cargo.toml b/crates/vcs_actions/Cargo.toml
index 6735d43..29bb505 100644
--- a/crates/vcs_actions/Cargo.toml
+++ b/crates/vcs_actions/Cargo.toml
@@ -15,14 +15,14 @@ action_system = { path = "../system_action" }
vcs_data = { path = "../vcs_data" }
# Error handling
-thiserror = "1.0.69"
+thiserror = "2.0.17"
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
-serde_json = "1.0.140"
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.145"
# Async & Networking
-tokio = { version = "1.46.1", features = ["full"] }
+tokio = { version = "1.48.0", features = ["full"] }
# Logging
log = "0.4.28"
diff --git a/crates/vcs_data/Cargo.toml b/crates/vcs_data/Cargo.toml
index b3bc4a2..f28c91e 100644
--- a/crates/vcs_data/Cargo.toml
+++ b/crates/vcs_data/Cargo.toml
@@ -17,10 +17,10 @@ action_system = { path = "../system_action" }
uuid = { version = "1.18.1", features = ["v4", "serde"] }
# Serialization
-serde = { version = "1.0.219", features = ["derive"] }
+serde = { version = "1.0.228", features = ["derive"] }
# Async & Networking
-tokio = { version = "1.46.1", features = ["full"] }
+tokio = { version = "1.48.0", features = ["full"] }
# Filesystem
dirs = "6.0.0"
diff --git a/crates/vcs_data/vcs_data_test/Cargo.toml b/crates/vcs_data/vcs_data_test/Cargo.toml
index 9dcbd4a..f6caa07 100644
--- a/crates/vcs_data/vcs_data_test/Cargo.toml
+++ b/crates/vcs_data/vcs_data_test/Cargo.toml
@@ -10,4 +10,4 @@ cfg_file = { path = "../../utils/cfg_file", features = ["default"] }
vcs_data = { path = "../../vcs_data" }
# Async & Networking
-tokio = { version = "1.46.1", features = ["full"] }
+tokio = { version = "1.48.0", features = ["full"] }