+4
CHANGELOG.md
+4
CHANGELOG.md
+9
-9
Cargo.lock
+9
-9
Cargo.lock
···
107
107
108
108
[[package]]
109
109
name = "atproto-client"
110
-
version = "0.9.1"
110
+
version = "0.9.2"
111
111
dependencies = [
112
112
"anyhow",
113
113
"atproto-identity",
···
130
130
131
131
[[package]]
132
132
name = "atproto-identity"
133
-
version = "0.9.1"
133
+
version = "0.9.2"
134
134
dependencies = [
135
135
"anyhow",
136
136
"async-trait",
···
158
158
159
159
[[package]]
160
160
name = "atproto-jetstream"
161
-
version = "0.9.1"
161
+
version = "0.9.2"
162
162
dependencies = [
163
163
"anyhow",
164
164
"async-trait",
···
180
180
181
181
[[package]]
182
182
name = "atproto-oauth"
183
-
version = "0.9.1"
183
+
version = "0.9.2"
184
184
dependencies = [
185
185
"anyhow",
186
186
"async-trait",
···
213
213
214
214
[[package]]
215
215
name = "atproto-oauth-aip"
216
-
version = "0.9.1"
216
+
version = "0.9.2"
217
217
dependencies = [
218
218
"anyhow",
219
219
"atproto-oauth",
···
227
227
228
228
[[package]]
229
229
name = "atproto-oauth-axum"
230
-
version = "0.9.1"
230
+
version = "0.9.2"
231
231
dependencies = [
232
232
"anyhow",
233
233
"async-trait",
···
257
257
258
258
[[package]]
259
259
name = "atproto-record"
260
-
version = "0.9.1"
260
+
version = "0.9.2"
261
261
dependencies = [
262
262
"anyhow",
263
263
"atproto-identity",
···
277
277
278
278
[[package]]
279
279
name = "atproto-xrpcs"
280
-
version = "0.9.1"
280
+
version = "0.9.2"
281
281
dependencies = [
282
282
"anyhow",
283
283
"async-trait",
···
304
304
305
305
[[package]]
306
306
name = "atproto-xrpcs-helloworld"
307
-
version = "0.9.1"
307
+
version = "0.9.2"
308
308
dependencies = [
309
309
"anyhow",
310
310
"async-trait",
+8
-8
Cargo.toml
+8
-8
Cargo.toml
···
22
22
categories = ["command-line-utilities", "web-programming"]
23
23
24
24
[workspace.dependencies]
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" }
25
+
atproto-client = { version = "0.9.2", path = "crates/atproto-client" }
26
+
atproto-identity = { version = "0.9.2", path = "crates/atproto-identity" }
27
+
atproto-oauth = { version = "0.9.2", path = "crates/atproto-oauth" }
28
+
atproto-oauth-axum = { version = "0.9.2", path = "crates/atproto-oauth-axum" }
29
+
atproto-oauth-aip = { version = "0.9.2", path = "crates/atproto-oauth-aip" }
30
+
atproto-record = { version = "0.9.2", path = "crates/atproto-record" }
31
+
atproto-xrpcs = { version = "0.9.2", path = "crates/atproto-xrpcs" }
32
+
atproto-jetstream = { version = "0.9.2", path = "crates/atproto-jetstream" }
33
33
34
34
anyhow = "1.0"
35
35
async-trait = "0.1.88"
+1
-1
Dockerfile
+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.1"
65
+
LABEL org.opencontainers.image.version="0.9.2"
66
66
LABEL org.opencontainers.image.licenses="MIT"
67
67
68
68
# Document available binaries
+5
-5
README.md
+5
-5
README.md
···
30
30
31
31
```toml
32
32
[dependencies]
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"
33
+
atproto-identity = "0.9.2"
34
+
atproto-record = "0.9.2"
35
+
atproto-oauth = "0.9.2"
36
+
atproto-oauth-aip = "0.9.2"
37
+
atproto-client = "0.9.2"
38
38
# Add others as needed
39
39
```
40
40
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-identity/Cargo.toml
+1
-1
crates/atproto-identity/Cargo.toml
···
1
1
[package]
2
2
name = "atproto-identity"
3
-
version = "0.9.1"
3
+
version = "0.9.2"
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
crates/atproto-jetstream/Cargo.toml
···
1
1
[package]
2
2
name = "atproto-jetstream"
3
-
version = "0.9.1"
3
+
version = "0.9.2"
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
crates/atproto-oauth-aip/Cargo.toml
+1
-1
crates/atproto-oauth-aip/README.md
+1
-1
crates/atproto-oauth-aip/README.md
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth/Cargo.toml
+1
-1
crates/atproto-oauth/Cargo.toml
···
1
1
[package]
2
2
name = "atproto-oauth"
3
-
version = "0.9.1"
3
+
version = "0.9.2"
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
crates/atproto-record/Cargo.toml
···
1
1
[package]
2
2
name = "atproto-record"
3
-
version = "0.9.1"
3
+
version = "0.9.2"
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
crates/atproto-xrpcs-helloworld/Cargo.toml