diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index 487c4fc..eccdd74 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -8,24 +8,24 @@ jellycommon = { path = "../common" } jellyremuxer = { path = "../remuxer" } jellyclient = { path = "../client" } -serde = { version = "1.0.163", features = ["derive"] } +serde = { version = "1.0.180", features = ["derive"] } bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] } -serde_json = "1.0.96" +serde_json = "1.0.104" -log = "0.4.18" +log = "0.4.19" env_logger = "0.10.0" -anyhow = "1.0.71" -once_cell = "1.17.2" +anyhow = "1.0.72" +once_cell = "1.18.0" chashmap = "2.2.2" rand = "0.8.5" base64 = "0.21.2" chrono = { version = "0.4.26", features = ["serde"] } -argon2 = "0.5.0" +argon2 = "0.5.1" aes-gcm-siv = "0.11.1" async-std = "1.12.0" -tokio = { version = "1.28.2", features = ["io-util"] } +tokio = { version = "1.29.1", features = ["io-util"] } tokio-util = { version = "0.7.8", features = ["io", "io-util"] } markup = "0.13.1" |