A better Rust ATProto crate

note about wasm requiring git dep

Orual 9725aa04 65d3b912

Changed files
+3 -1
crates
jacquard-identity
+1
README.md
··· 55 55 - Basic LRU in-memory cache implementation using `mini-moka` 56 56 - Reduces number of network requests for certain operations 57 57 - Works on both native and WebAssembly 58 + - **NOTE** wasm target for `mini-moka` requires a git dependency, use the git version of the crate when compiling for wasm 58 59 59 60 **XRPC client improvements** 60 61 - `set_options()` and `set_endpoint()` methods on `XrpcClient` trait
+2 -1
crates/jacquard-identity/Cargo.toml
··· 37 37 urlencoding.workspace = true 38 38 tracing = { workspace = true, optional = true } 39 39 n0-future = { workspace = true, optional = true } 40 - mini-moka = { version = "0.11.0", git = "https://github.com/moka-rs/mini-moka", rev = "da864e849f5d034f32e02197fee9bb5d5af36d3d", optional = true } 40 + mini-moka = { version = "0.11.0", git = "https://github.com/moka-rs/mini-moka", rev = "da864e849f5d034f32e02197fee9bb5d5af36d3d", optional = true } 41 + #mini-moka = { version = "0.10", optional = true } 41 42 42 43 [target.'cfg(not(target_family = "wasm"))'.dependencies] 43 44 hickory-resolver = { optional = true, version = "0.24", default-features = false, features = ["system-config", "tokio-runtime"]}