diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-28 00:48:52 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-28 00:48:52 +0200 |
commit | 80d28b764c95891551e28c395783f5ff9d065743 (patch) | |
tree | f25898b1c939a939c63236ca4e8e843e81069947 /cache/Cargo.toml | |
parent | 335ba978dbaf203f3603a815147fd75dbf205723 (diff) | |
download | jellything-80d28b764c95891551e28c395783f5ff9d065743.tar jellything-80d28b764c95891551e28c395783f5ff9d065743.tar.bz2 jellything-80d28b764c95891551e28c395783f5ff9d065743.tar.zst |
start with splitting server
Diffstat (limited to 'cache/Cargo.toml')
-rw-r--r-- | cache/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cache/Cargo.toml b/cache/Cargo.toml new file mode 100644 index 0000000..42f5e00 --- /dev/null +++ b/cache/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "jellycache" +version = "0.1.0" +edition = "2024" + +[dependencies] +base64 = "0.22.1" +bincode = "2.0.0-rc.3" +humansize = "2.1.3" +anyhow = "1.0.95" +log = { workspace = true } +tokio = { workspace = true } +sha2 = "0.10.8" +rand = "0.9.1" +serde = "1.0.217" |