A Rust application to showcase badge awards in the AT Protocol ecosystem.

chore: Updated atproto-* crates to 0.9.5

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

Changed files
+14 -14
+10 -10
Cargo.lock
··· 171 171 172 172 [[package]] 173 173 name = "atproto-client" 174 - version = "0.9.2" 174 + version = "0.9.5" 175 175 source = "registry+https://github.com/rust-lang/crates.io-index" 176 - checksum = "b1807b75d7b072f4feb4ffe5d6f749369b40f255b5bddf19fc0024392e360853" 176 + checksum = "9c10caaa4a574cb8c8fa4a4eb92aa50cb44dc7e21adaf675b2bf871cb4961730" 177 177 dependencies = [ 178 178 "anyhow", 179 179 "atproto-identity", ··· 193 193 194 194 [[package]] 195 195 name = "atproto-identity" 196 - version = "0.9.2" 196 + version = "0.9.5" 197 197 source = "registry+https://github.com/rust-lang/crates.io-index" 198 - checksum = "39e8b6d8136cc72cc76fc081e2389758761dd4018b04408d55a71281aa310fe2" 198 + checksum = "51c6a477bdd0dda0f298af1a366f7e764ef677997448d981ceaecbbd1a6143ee" 199 199 dependencies = [ 200 200 "anyhow", 201 201 "async-trait", ··· 221 221 222 222 [[package]] 223 223 name = "atproto-jetstream" 224 - version = "0.9.2" 224 + version = "0.9.5" 225 225 source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "289bfd0e2988258e6e96b5632bc84befbd4f8bd30497341f2fb991603ff6f480" 226 + checksum = "62275c8f0ed5dfe9ee19b98223934930504a4d61354bfcdc219704f8b71f8aa6" 227 227 dependencies = [ 228 228 "anyhow", 229 229 "async-trait", ··· 244 244 245 245 [[package]] 246 246 name = "atproto-oauth" 247 - version = "0.9.2" 247 + version = "0.9.5" 248 248 source = "registry+https://github.com/rust-lang/crates.io-index" 249 - checksum = "e835ee92d505a6edc794943067af4e0922e4b9e8d54f4df4eaaab15d1ea51687" 249 + checksum = "a71fb171bf1d56406e2a47a7ff4a54a2ad8181ac94d6884a30b762acc96bf7c7" 250 250 dependencies = [ 251 251 "anyhow", 252 252 "async-trait", ··· 278 278 279 279 [[package]] 280 280 name = "atproto-record" 281 - version = "0.9.2" 281 + version = "0.9.5" 282 282 source = "registry+https://github.com/rust-lang/crates.io-index" 283 - checksum = "c8fd0584e562083f5fe4cde960debbe45ee7a43c18e312d4c260e26892f3a945" 283 + checksum = "16244fe2415e6ab43bfb0b52e9dea96ae44537937b2cd553c163429719d1b8c3" 284 284 dependencies = [ 285 285 "anyhow", 286 286 "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"