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