diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
| commit | b2e88a8beabf04adc28947cf82996e8692a68b71 (patch) | |
| tree | 23d66c8672b69cce7835ffabae4092669062ada8 /Cargo.lock | |
| parent | 774f64c0789529884dd7a5232f190e347ad29532 (diff) | |
| download | jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.bz2 jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.zst | |
move things around; kv crate
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 58 |
1 files changed, 55 insertions, 3 deletions
@@ -522,6 +522,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] +name = "chacha20" +version = "0.10.0-rc.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31cd65b2ca03198c223cd9a8fa1152c4ec251cd79049f6dc584152ad3fb5ba9d" +dependencies = [ + "cfg-if", + "cpufeatures", + "rand_core 0.10.0-rc-5", +] + +[[package]] name = "chashmap" version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1233,6 +1244,19 @@ dependencies = [ ] [[package]] +name = "getrandom" +version = "0.4.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "rand_core 0.10.0-rc-5", + "wasip2", +] + +[[package]] name = "ghash" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1797,10 +1821,10 @@ dependencies = [ "anyhow", "base64", "humansize", + "jellykv", "log", "percent-encoding", "rand 0.9.2", - "rocksdb", "serde", "serde_json", "sha2", @@ -1820,10 +1844,9 @@ version = "0.1.0" dependencies = [ "anyhow", "bytemuck", + "jellykv", "jellyobject", "log", - "redb", - "rocksdb", "serde", "serde_json", ] @@ -1865,6 +1888,16 @@ dependencies = [ ] [[package]] +name = "jellykv" +version = "0.1.0" +dependencies = [ + "anyhow", + "rand 0.10.0-rc.7", + "redb", + "rocksdb", +] + +[[package]] name = "jellylogic" version = "0.1.0" dependencies = [ @@ -1943,8 +1976,10 @@ dependencies = [ "jellycache", "jellycommon", "jellyimport", + "jellykv", "jellystream", "jellytranscoder", + "jellyui", "log", "rand 0.9.2", "rocket", @@ -2936,6 +2971,17 @@ dependencies = [ ] [[package]] +name = "rand" +version = "0.10.0-rc.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d3e6a909ceda8ceb12ef039b675ecf4bbe6def127e773cac109ab8347633766" +dependencies = [ + "chacha20", + "getrandom 0.4.0-rc.0", + "rand_core 0.10.0-rc-5", +] + +[[package]] name = "rand_chacha" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2989,6 +3035,12 @@ dependencies = [ ] [[package]] +name = "rand_core" +version = "0.10.0-rc-5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05a06e03bd1f2ae861ab9e7498b6c64ed3dadb9ce175c0464a2522a5f23c0045" + +[[package]] name = "rand_distr" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" |