A library for ATProtocol identities.

release: 0.9.1

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

Changed files
+38 -33
crates
atproto-client
atproto-identity
atproto-jetstream
atproto-oauth
atproto-oauth-aip
atproto-oauth-axum
atproto-record
atproto-xrpcs
atproto-xrpcs-helloworld
+5
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] 9 9 10 + ## [0.9.1] - 2025-06-29 11 + ### Changed 12 + - Updated dependency versions for improved compatibility 13 + 10 14 ## [0.9.0] - 2025-06-29 11 15 ### Security 12 16 - Explicitly forbid unsafe code usage across all crates for enhanced security ··· 76 80 - Core DID document handling 77 81 - Cryptographic key operations for P-256 curves 78 82 83 + [0.9.1]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.1 79 84 [0.9.0]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.0 80 85 [0.8.1]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.8.1 81 86 [0.8.0]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.8.0
+9 -9
Cargo.lock
··· 107 107 108 108 [[package]] 109 109 name = "atproto-client" 110 - version = "0.9.0" 110 + version = "0.9.1" 111 111 dependencies = [ 112 112 "anyhow", 113 113 "atproto-identity", ··· 130 130 131 131 [[package]] 132 132 name = "atproto-identity" 133 - version = "0.9.0" 133 + version = "0.9.1" 134 134 dependencies = [ 135 135 "anyhow", 136 136 "async-trait", ··· 157 157 158 158 [[package]] 159 159 name = "atproto-jetstream" 160 - version = "0.9.0" 160 + version = "0.9.1" 161 161 dependencies = [ 162 162 "anyhow", 163 163 "async-trait", ··· 179 179 180 180 [[package]] 181 181 name = "atproto-oauth" 182 - version = "0.9.0" 182 + version = "0.9.1" 183 183 dependencies = [ 184 184 "anyhow", 185 185 "async-trait", ··· 211 211 212 212 [[package]] 213 213 name = "atproto-oauth-aip" 214 - version = "0.9.0" 214 + version = "0.9.1" 215 215 dependencies = [ 216 216 "anyhow", 217 217 "atproto-oauth", ··· 224 224 225 225 [[package]] 226 226 name = "atproto-oauth-axum" 227 - version = "0.9.0" 227 + version = "0.9.1" 228 228 dependencies = [ 229 229 "anyhow", 230 230 "async-trait", ··· 253 253 254 254 [[package]] 255 255 name = "atproto-record" 256 - version = "0.9.0" 256 + version = "0.9.1" 257 257 dependencies = [ 258 258 "anyhow", 259 259 "atproto-identity", ··· 273 273 274 274 [[package]] 275 275 name = "atproto-xrpcs" 276 - version = "0.9.0" 276 + version = "0.9.1" 277 277 dependencies = [ 278 278 "anyhow", 279 279 "async-trait", ··· 300 300 301 301 [[package]] 302 302 name = "atproto-xrpcs-helloworld" 303 - version = "0.9.0" 303 + version = "0.9.1" 304 304 dependencies = [ 305 305 "anyhow", 306 306 "async-trait",
+8 -8
Cargo.toml
··· 22 22 categories = ["command-line-utilities", "web-programming"] 23 23 24 24 [workspace.dependencies] 25 - atproto-client = { version = "0.9.0", path = "crates/atproto-client" } 26 - atproto-identity = { version = "0.9.0", path = "crates/atproto-identity" } 27 - atproto-oauth = { version = "0.9.0", path = "crates/atproto-oauth" } 28 - atproto-oauth-axum = { version = "0.9.0", path = "crates/atproto-oauth-axum" } 29 - atproto-oauth-aip = { version = "0.9.0", path = "crates/atproto-oauth-aip" } 30 - atproto-record = { version = "0.9.0", path = "crates/atproto-record" } 31 - atproto-xrpcs = { version = "0.9.0", path = "crates/atproto-xrpcs" } 32 - atproto-jetstream = { version = "0.9.0", path = "crates/atproto-jetstream" } 25 + atproto-client = { version = "0.9.1", path = "crates/atproto-client" } 26 + atproto-identity = { version = "0.9.1", path = "crates/atproto-identity" } 27 + atproto-oauth = { version = "0.9.1", path = "crates/atproto-oauth" } 28 + atproto-oauth-axum = { version = "0.9.1", path = "crates/atproto-oauth-axum" } 29 + atproto-oauth-aip = { version = "0.9.1", path = "crates/atproto-oauth-aip" } 30 + atproto-record = { version = "0.9.1", path = "crates/atproto-record" } 31 + atproto-xrpcs = { version = "0.9.1", path = "crates/atproto-xrpcs" } 32 + atproto-jetstream = { version = "0.9.1", path = "crates/atproto-jetstream" } 33 33 34 34 anyhow = "1.0" 35 35 async-trait = "0.1.88"
+1 -1
Dockerfile
··· 62 62 LABEL org.opencontainers.image.description="AT Protocol identity management tools" 63 63 LABEL org.opencontainers.image.authors="Nick Gerakines <nick.gerakines@gmail.com>" 64 64 LABEL org.opencontainers.image.source="https://tangled.sh/@smokesignal.events/atproto-identity-rs" 65 - LABEL org.opencontainers.image.version="0.9.0" 65 + LABEL org.opencontainers.image.version="0.9.1" 66 66 LABEL org.opencontainers.image.licenses="MIT" 67 67 68 68 # Document available binaries
+5 -5
README.md
··· 30 30 31 31 ```toml 32 32 [dependencies] 33 - atproto-identity = "0.9.0" 34 - atproto-record = "0.9.0" 35 - atproto-oauth = "0.9.0" 36 - atproto-oauth-aip = "0.9.0" 37 - atproto-client = "0.9.0" 33 + atproto-identity = "0.9.1" 34 + atproto-record = "0.9.1" 35 + atproto-oauth = "0.9.1" 36 + atproto-oauth-aip = "0.9.1" 37 + atproto-client = "0.9.1" 38 38 # Add others as needed 39 39 ``` 40 40
+1 -1
crates/atproto-client/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-client" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "HTTP client for AT Protocol services with OAuth and identity integration" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-identity/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-identity" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "AT Protocol identity management - DID resolution, handle resolution, and cryptographic operations" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-jetstream/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-jetstream" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "AT Protocol Jetstream event consumer library with WebSocket streaming and compression support" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-oauth-aip/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-oauth-aip" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "ATProtocol AIP OAuth tools" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-oauth-aip/README.md
··· 25 25 26 26 ```toml 27 27 [dependencies] 28 - atproto-oauth-aip = "0.9.0" 28 + atproto-oauth-aip = "0.9.1" 29 29 ``` 30 30 31 31 ## Usage
+1 -1
crates/atproto-oauth-axum/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-oauth-axum" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "Axum web framework integration for AT Protocol OAuth workflows" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-oauth/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-oauth" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "OAuth workflow implementation for AT Protocol - PKCE, DPoP, and secure authentication flows" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-record/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-record" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "AT Protocol record signature operations - cryptographic signing and verification for AT Protocol records" 5 5 readme = "README.md" 6 6 homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs"
+1 -1
crates/atproto-xrpcs-helloworld/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-xrpcs-helloworld" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "Complete example implementation of an AT Protocol XRPC service with DID web functionality and JWT authentication" 5 5 edition.workspace = true 6 6 rust-version.workspace = true
+1 -1
crates/atproto-xrpcs/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-xrpcs" 3 - version = "0.9.0" 3 + version = "0.9.1" 4 4 description = "Core building blocks for implementing AT Protocol XRPC services with JWT authorization" 5 5 edition.workspace = true 6 6 rust-version.workspace = true