A better Rust ATProto crate

version bumps

JJ Change ID: qyqmpqlz

Changed files
+6 -6
crates
jacquard
src
jacquard-identity
jacquard-lexicon
+2 -2
Cargo.lock
··· 2405 2405 2406 2406 [[package]] 2407 2407 name = "jacquard-identity" 2408 - version = "0.9.1" 2408 + version = "0.9.2" 2409 2409 dependencies = [ 2410 2410 "bon", 2411 2411 "bytes", ··· 2459 2459 2460 2460 [[package]] 2461 2461 name = "jacquard-lexicon" 2462 - version = "0.9.1" 2462 + version = "0.9.2" 2463 2463 dependencies = [ 2464 2464 "bytes", 2465 2465 "cid",
+1 -1
crates/jacquard-identity/Cargo.toml
··· 1 1 [package] 2 2 name = "jacquard-identity" 3 3 edition.workspace = true 4 - version = "0.9.1" 4 + version = "0.9.2" 5 5 authors.workspace = true 6 6 repository.workspace = true 7 7 keywords.workspace = true
+1 -1
crates/jacquard-lexicon/Cargo.toml
··· 2 2 name = "jacquard-lexicon" 3 3 description = "Lexicon schema parsing and code generation for Jacquard" 4 4 edition.workspace = true 5 - version = "0.9.1" 5 + version = "0.9.2" 6 6 authors.workspace = true 7 7 repository.workspace = true 8 8 keywords.workspace = true
+2 -2
crates/jacquard/src/client.rs
··· 168 168 } 169 169 170 170 impl UnauthenticatedSession<JacquardResolver> { 171 - /// Create a new unauthenticated session using public resolvers 171 + /// Create a new unauthenticated session using the public bluesky appview api as a fallback resolver 172 172 pub fn new_public() -> Self { 173 173 let resolver = Arc::new(JacquardResolver::default()); 174 174 let endpoint = Arc::new(RwLock::new(None)); ··· 180 180 } 181 181 } 182 182 183 - /// Create a new unauthenticated session using the Slingshot relay resolver 183 + /// Create a new unauthenticated session using the Slingshot service for handle resolution 184 184 pub fn new_slingshot() -> Self { 185 185 let resolver = Arc::new(slingshot_resolver_default()); 186 186 let endpoint = Arc::new(RwLock::new(None));