aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAntoine A <>2023-10-04 19:46:11 +0200
committerAntoine A <>2023-10-04 19:46:32 +0200
commitb64461c9e5133f63b9edbfb9bb2fc07017a2b735 (patch)
tree56b6db6d2128a731491d62d93c004d1d3561223f /common
parent1166a20057f4e55416d5c1171726a47d24f11d91 (diff)
downloaddepolymerization-b64461c9e5133f63b9edbfb9bb2fc07017a2b735.tar.gz
depolymerization-b64461c9e5133f63b9edbfb9bb2fc07017a2b735.tar.bz2
depolymerization-b64461c9e5133f63b9edbfb9bb2fc07017a2b735.zip
Update dependencies and bump msrv to 1.70.0 to follow debian unstable package
Diffstat (limited to 'common')
-rw-r--r--common/Cargo.toml20
1 files changed, 10 insertions, 10 deletions
diff --git a/common/Cargo.toml b/common/Cargo.toml
index 2582775..5b9f4ef 100644
--- a/common/Cargo.toml
+++ b/common/Cargo.toml
@@ -9,27 +9,27 @@ rust-version = "1.63.0"
[dependencies]
# Serialization framework
-serde = { version = "1.0.152", features = ["derive"] }
+serde = { version = "1.0.188", features = ["derive"] }
# Serialization helper
-serde_with = "2.2.0"
+serde_with = "3.3.0"
# JSON serialization
-serde_json = "1.0.91"
+serde_json = "1.0.107"
# Url format
-url = { version = "2.3.1", features = ["serde"] }
+url = { version = "2.4.1", features = ["serde"] }
# Crockford’s base32
base32 = "0.4.0"
# Error macros
-thiserror = "1.0.38"
+thiserror = "1.0.49"
# Ini files
-rust-ini = "0.18.0"
+rust-ini = "0.19.0"
# Logging
-flexi_logger = { version = "0.24.2", default-features = false }
-log = "0.4.17"
+flexi_logger = { version = "0.27.2", default-features = false }
+log = "0.4.20"
# Postgres client
-postgres = "0.19.4"
+postgres = "0.19.7"
# Secure random
rand = { version = "0.8.5", features = ["getrandom"] }
# Securely zero memory
-zeroize = "1.5.7"
+zeroize = "1.6.0"
# Optimized uri binary format
uri-pack = { path = "../uri-pack" }