A library for ATProtocol identities.

release: 0.4.1

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

Changed files
+24 -24
crates
atproto-client
atproto-identity
atproto-oauth
atproto-oauth-axum
atproto-record
+5 -5
Cargo.lock
··· 57 57 58 58 [[package]] 59 59 name = "atproto-client" 60 - version = "0.4.0" 60 + version = "0.4.1" 61 61 dependencies = [ 62 62 "anyhow", 63 63 "atproto-identity", ··· 76 76 77 77 [[package]] 78 78 name = "atproto-identity" 79 - version = "0.4.0" 79 + version = "0.4.1" 80 80 dependencies = [ 81 81 "anyhow", 82 82 "async-trait", ··· 101 101 102 102 [[package]] 103 103 name = "atproto-oauth" 104 - version = "0.4.0" 104 + version = "0.4.1" 105 105 dependencies = [ 106 106 "anyhow", 107 107 "async-trait", ··· 132 132 133 133 [[package]] 134 134 name = "atproto-oauth-axum" 135 - version = "0.4.0" 135 + version = "0.4.1" 136 136 dependencies = [ 137 137 "anyhow", 138 138 "async-trait", ··· 158 158 159 159 [[package]] 160 160 name = "atproto-record" 161 - version = "0.4.0" 161 + version = "0.4.1" 162 162 dependencies = [ 163 163 "anyhow", 164 164 "atproto-identity",
+4 -4
Cargo.toml
··· 18 18 categories = ["command-line-utilities", "web-programming"] 19 19 20 20 [workspace.dependencies] 21 - atproto-identity = { version = "0.4.0", path = "crates/atproto-identity" } 22 - atproto-record = { version = "0.4.0", path = "crates/atproto-record" } 23 - atproto-oauth = { version = "0.4.0", path = "crates/atproto-oauth" } 24 - atproto-client = { version = "0.4.0", path = "crates/atproto-client" } 21 + atproto-identity = { version = "0.4.1", path = "crates/atproto-identity" } 22 + atproto-record = { version = "0.4.1", path = "crates/atproto-record" } 23 + atproto-oauth = { version = "0.4.1", path = "crates/atproto-oauth" } 24 + atproto-client = { version = "0.4.1", path = "crates/atproto-client" } 25 25 26 26 anyhow = "1.0" 27 27 async-trait = "0.1.88"
+1 -1
Dockerfile
··· 48 48 LABEL org.opencontainers.image.description="AT Protocol identity management tools" 49 49 LABEL org.opencontainers.image.authors="Nick Gerakines <nick.gerakines@gmail.com>" 50 50 LABEL org.opencontainers.image.source="https://tangled.sh/@smokesignal.events/atproto-identity-rs" 51 - LABEL org.opencontainers.image.version="0.4.0" 51 + LABEL org.opencontainers.image.version="0.4.1" 52 52 LABEL org.opencontainers.image.licenses="MIT" 53 53 54 54 # Document available binaries
+5 -5
README.md
··· 83 83 84 84 ```toml 85 85 [dependencies] 86 - atproto-identity = "0.4.0" 87 - atproto-record = "0.43.0" 88 - atproto-oauth = "0.4.0" 89 - atproto-client = "0.43.0" 90 - atproto-oauth-axum = "0.4.0" 86 + atproto-identity = "0.4.1" 87 + atproto-record = "0.4.1" 88 + atproto-oauth = "0.4.1" 89 + atproto-client = "0.4.1" 90 + atproto-oauth-axum = "0.4.1" 91 91 ``` 92 92 93 93 ### Basic Identity Resolution
+1 -1
crates/atproto-client/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-client" 3 - version = "0.4.0" 3 + version = "0.4.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-client/README.md
··· 25 25 26 26 ```toml 27 27 [dependencies] 28 - atproto-client = "0.4.0" 28 + atproto-client = "0.4.1" 29 29 ``` 30 30 31 31 ## Usage
+1 -1
crates/atproto-identity/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-identity" 3 - version = "0.4.0" 3 + version = "0.4.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-identity/README.md
··· 30 30 31 31 ```toml 32 32 [dependencies] 33 - atproto-identity = "0.4.0" 33 + atproto-identity = "0.4.1" 34 34 ``` 35 35 36 36 ## Usage
+1 -1
crates/atproto-oauth-axum/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-oauth-axum" 3 - version = "0.4.0" 3 + version = "0.4.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-axum/README.md
··· 25 25 26 26 ```toml 27 27 [dependencies] 28 - atproto-oauth-axum = "0.4.0" 28 + atproto-oauth-axum = "0.4.1" 29 29 ``` 30 30 31 31 ## Usage
+1 -1
crates/atproto-oauth/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-oauth" 3 - version = "0.4.0" 3 + version = "0.4.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-oauth/README.md
··· 32 32 33 33 ```toml 34 34 [dependencies] 35 - atproto-oauth = "0.4.0" 35 + atproto-oauth = "0.4.1" 36 36 ``` 37 37 38 38 ## Usage
+1 -1
crates/atproto-record/Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-record" 3 - version = "0.4.0" 3 + version = "0.4.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"