From 88980d90be21bbb95bb1e4ea280e9fe547fb9cd9 Mon Sep 17 00:00:00 2001 From: janskiba Date: Fri, 22 Mar 2024 10:53:54 +0000 Subject: [PATCH] chore: Relax depency versions and remove rust-crypto --- Cargo.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b9df850..f209888 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,17 +18,16 @@ uuid = { version = "1.7.0", features = ["v4"] } # Db diesel = { version = "2.1.4", features = ["sqlite", "r2d2"] } diesel_migrations = { version = "2.1.0", features = ["sqlite"] } -libsqlite3-sys = { version = "0.27.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.28", features = ["bundled"] } # Beam beam-lib = { git = "https://github.com/samply/beam", branch = "develop", features = ["http-util"] } async-sse = "5.1.0" futures-util = { version = "0.3", features = ["io"] } #encrypt -rust-crypto = "^0.2" -aes = "0.8.4" -ctr = "0.9.2" -cipher = "0.4.4" -base64 = "0.22.0" +aes = "0.8" +ctr = "0.9" +cipher = "0.4" +base64 = "0.21" # Logging tracing = { version = "0.1" }