+2
-2
Cargo.lock
+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
crates/jacquard-identity/Cargo.toml
+1
-1
crates/jacquard-lexicon/Cargo.toml
+1
-1
crates/jacquard-lexicon/Cargo.toml
+2
-2
crates/jacquard/src/client.rs
+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));