diff options
author | metamuffin <metamuffin@disroot.org> | 2024-04-15 17:13:15 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-04-15 17:13:15 +0200 |
commit | 29a62d702b24d8ea30c72e17569d9a98ad2775b9 (patch) | |
tree | 0f3f746054d7d52cb537c055217e8afe88f68baf /base/src/lib.rs | |
parent | 2c1b50a1f32c5f87489c2bc03f81e53da8cf3d29 (diff) | |
download | jellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar jellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar.bz2 jellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar.zst |
upgrade all deps (except image-rs)
Diffstat (limited to 'base/src/lib.rs')
-rw-r--r-- | base/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/src/lib.rs b/base/src/lib.rs index 71fa300..b90934e 100644 --- a/base/src/lib.rs +++ b/base/src/lib.rs @@ -4,11 +4,11 @@ Copyright (C) 2024 metamuffin <metamuffin.org> */ #![feature(lazy_cell)] +pub mod assetfed; pub mod cache; pub mod database; pub mod federation; pub mod permission; -pub mod assetfed; use jellycommon::config::{GlobalConfig, SecretsConfig}; use std::{fs::File, sync::LazyLock}; |