An ATProtocol powered blogging engine.

chore: Updated atproto-* crates to 0.9.5

Signed-off-by: Nick Gerakines <nick.gerakines@gmail.com>

+14 -14
+10 -10
Cargo.lock
··· 174 174 175 175 [[package]] 176 176 name = "atproto-client" 177 - version = "0.9.3" 177 + version = "0.9.5" 178 178 source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "39bb72476cc82f1ec957c999366d75fc2de17625e2e2230ac32a145ee3e43431" 179 + checksum = "9c10caaa4a574cb8c8fa4a4eb92aa50cb44dc7e21adaf675b2bf871cb4961730" 180 180 dependencies = [ 181 181 "anyhow", 182 182 "atproto-identity", ··· 196 196 197 197 [[package]] 198 198 name = "atproto-identity" 199 - version = "0.9.3" 199 + version = "0.9.5" 200 200 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "af9c670b1082a66c128be205fdfdd1ccc51529076104677d2914bb8089c0d6bf" 201 + checksum = "51c6a477bdd0dda0f298af1a366f7e764ef677997448d981ceaecbbd1a6143ee" 202 202 dependencies = [ 203 203 "anyhow", 204 204 "async-trait", ··· 224 224 225 225 [[package]] 226 226 name = "atproto-jetstream" 227 - version = "0.9.3" 227 + version = "0.9.5" 228 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "41a61cbcdb44064d33e69cc38e1ec516cb0d534113339f0ed51f22b8a188f098" 229 + checksum = "62275c8f0ed5dfe9ee19b98223934930504a4d61354bfcdc219704f8b71f8aa6" 230 230 dependencies = [ 231 231 "anyhow", 232 232 "async-trait", ··· 247 247 248 248 [[package]] 249 249 name = "atproto-oauth" 250 - version = "0.9.3" 250 + version = "0.9.5" 251 251 source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "20cf08578f77fe77a0bc02a09cfe1a46f709603a70b3467b65368d82461d39ed" 252 + checksum = "a71fb171bf1d56406e2a47a7ff4a54a2ad8181ac94d6884a30b762acc96bf7c7" 253 253 dependencies = [ 254 254 "anyhow", 255 255 "async-trait", ··· 281 281 282 282 [[package]] 283 283 name = "atproto-record" 284 - version = "0.9.3" 284 + version = "0.9.5" 285 285 source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "97bab917de984b2c5cf8cec9d0dd7c0119217e776b647a99dc631f065e74f61c" 286 + checksum = "16244fe2415e6ab43bfb0b52e9dea96ae44537937b2cd553c163429719d1b8c3" 287 287 dependencies = [ 288 288 "anyhow", 289 289 "atproto-identity",
+4 -4
Cargo.toml
··· 16 16 17 17 [dependencies] 18 18 # ATProtocol dependencies 19 - atproto-client = { version = "0.9.2" } 20 - atproto-identity = { version = "0.9.2" } 21 - atproto-record = { version = "0.9.2" } 22 - atproto-jetstream = { version = "0.9.2" } 19 + atproto-client = { version = "0.9.5" } 20 + atproto-identity = { version = "0.9.5" } 21 + atproto-record = { version = "0.9.5" } 22 + atproto-jetstream = { version = "0.9.5" } 23 23 24 24 # Web framework 25 25 axum = "0.8"