don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: downgrade flume 0.12.0 -> 0.11.1

`sqlx-sqlite` depends on 0.11.1. Downgrade for now until `sqlx-sqlite`
depends on 0.12.0.

Signed-off-by: tjh <x@tjh.dev>

tjh 22b2f649 3636348a

+13 -18
+12 -17
Cargo.lock
··· 965 965 version = "2.3.0" 966 966 source = "registry+https://github.com/rust-lang/crates.io-index" 967 967 checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 968 - dependencies = [ 969 - "getrandom 0.2.17", 970 - ] 971 968 972 969 [[package]] 973 970 name = "ff" ··· 1017 1020 dependencies = [ 1018 1021 "futures-core", 1019 1022 "futures-sink", 1020 - "spin", 1021 - ] 1022 - 1023 - [[package]] 1024 - name = "flume" 1025 - version = "0.12.0" 1026 - source = "registry+https://github.com/rust-lang/crates.io-index" 1027 - checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be" 1028 - dependencies = [ 1029 - "fastrand", 1030 - "futures-core", 1031 - "futures-sink", 1023 + "nanorand", 1032 1024 "spin", 1033 1025 ] 1034 1026 ··· 2611 2625 "bytes", 2612 2626 "clap", 2613 2627 "fastrand", 2614 - "flume 0.12.0", 2628 + "flume", 2615 2629 "futures-util", 2616 2630 "serde", 2617 2631 "serde_json", ··· 2974 2988 "base256emoji", 2975 2989 "data-encoding", 2976 2990 "data-encoding-macro", 2991 + ] 2992 + 2993 + [[package]] 2994 + name = "nanorand" 2995 + version = "0.7.0" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2998 + dependencies = [ 2999 + "getrandom 0.2.17", 2977 3000 ] 2978 3001 2979 3002 [[package]] ··· 4161 4166 checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 4162 4167 dependencies = [ 4163 4168 "atoi", 4164 - "flume 0.11.1", 4169 + "flume", 4165 4170 "futures-channel", 4166 4171 "futures-core", 4167 4172 "futures-executor",
+1 -1
crates/jetstream/Cargo.toml
··· 17 17 url.workspace = true 18 18 19 19 bytes = "1.10.1" 20 - flume = "0.12.0" 20 + flume = "0.11.1" 21 21 futures-util = "0.3.31" 22 22 tokio = { version = "1.48.0", features = ["macros", "rt", "sync", "time"] } 23 23 tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots"] }