diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-10 14:52:40 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-10 14:52:40 +0200 |
commit | c0365c8c64f403fd9ee75c0db1a9ed6134633e8f (patch) | |
tree | 5c51567748c9bbf1b3a9da46a97f52da90cc2ebd /base | |
parent | d7636b4707f09862577515c87007f3ac0b705ed8 (diff) | |
download | jellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar jellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar.bz2 jellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar.zst |
bump versions
Diffstat (limited to 'base')
-rw-r--r-- | base/Cargo.toml | 10 | ||||
-rw-r--r-- | base/src/lib.rs | 1 |
2 files changed, 5 insertions, 6 deletions
diff --git a/base/Cargo.toml b/base/Cargo.toml index de8ab17..67600ed 100644 --- a/base/Cargo.toml +++ b/base/Cargo.toml @@ -6,18 +6,18 @@ edition = "2021" [dependencies] jellycommon = { path = "../common" } jellyclient = { path = "../client" } -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.203", features = ["derive"] } serde_yaml = "0.9.34" log = { workspace = true } sha2 = "0.10.8" -base64 = "0.22.0" +base64 = "0.22.1" tokio = { workspace = true } -anyhow = "1.0.82" +anyhow = "1.0.86" bincode = "2.0.0-rc.3" rand = "0.8.5" -redb = "2.0.0" +redb = "2.1.1" tantivy = "0.22.0" -serde_json = "1.0.115" +serde_json = "1.0.117" aes-gcm-siv = "0.11.1" [features] diff --git a/base/src/lib.rs b/base/src/lib.rs index 385ad7a..3eb77e2 100644 --- a/base/src/lib.rs +++ b/base/src/lib.rs @@ -3,7 +3,6 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2024 metamuffin <metamuffin.org> */ -#![feature(lazy_cell)] pub mod assetfed; pub mod cache; pub mod database; |