+5
-5
Cargo.lock
+5
-5
Cargo.lock
···
57
57
58
58
[[package]]
59
59
name = "atproto-client"
60
-
version = "0.3.0"
60
+
version = "0.4.0"
61
61
dependencies = [
62
62
"anyhow",
63
63
"atproto-identity",
···
76
76
77
77
[[package]]
78
78
name = "atproto-identity"
79
-
version = "0.3.0"
79
+
version = "0.4.0"
80
80
dependencies = [
81
81
"anyhow",
82
82
"async-trait",
···
101
101
102
102
[[package]]
103
103
name = "atproto-oauth"
104
-
version = "0.3.0"
104
+
version = "0.4.0"
105
105
dependencies = [
106
106
"anyhow",
107
107
"async-trait",
···
132
132
133
133
[[package]]
134
134
name = "atproto-oauth-axum"
135
-
version = "0.3.0"
135
+
version = "0.4.0"
136
136
dependencies = [
137
137
"anyhow",
138
138
"async-trait",
···
158
158
159
159
[[package]]
160
160
name = "atproto-record"
161
-
version = "0.3.0"
161
+
version = "0.4.0"
162
162
dependencies = [
163
163
"anyhow",
164
164
"atproto-identity",
+4
-4
Cargo.toml
+4
-4
Cargo.toml
···
18
18
categories = ["command-line-utilities", "web-programming"]
19
19
20
20
[workspace.dependencies]
21
-
atproto-identity = { version = "0.3.0", path = "crates/atproto-identity" }
22
-
atproto-record = { version = "0.3.0", path = "crates/atproto-record" }
23
-
atproto-oauth = { version = "0.3.0", path = "crates/atproto-oauth" }
24
-
atproto-client = { version = "0.3.0", path = "crates/atproto-client" }
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" }
25
25
26
26
anyhow = "1.0"
27
27
async-trait = "0.1.88"
+1
-1
Dockerfile
+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.3.0"
51
+
LABEL org.opencontainers.image.version="0.4.0"
52
52
LABEL org.opencontainers.image.licenses="MIT"
53
53
54
54
# Document available binaries
+5
-5
README.md
+5
-5
README.md
···
83
83
84
84
```toml
85
85
[dependencies]
86
-
atproto-identity = "0.3.0"
87
-
atproto-record = "0.3.0"
88
-
atproto-oauth = "0.3.0"
89
-
atproto-client = "0.3.0"
90
-
atproto-oauth-axum = "0.3.0"
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"
91
91
```
92
92
93
93
### Basic Identity Resolution
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-client/README.md
+1
-1
crates/atproto-client/README.md
+1
-1
crates/atproto-identity/Cargo.toml
+1
-1
crates/atproto-identity/Cargo.toml
+1
-1
crates/atproto-identity/README.md
+1
-1
crates/atproto-identity/README.md
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth-axum/README.md
+1
-1
crates/atproto-oauth-axum/README.md
+1
-1
crates/atproto-oauth/Cargo.toml
+1
-1
crates/atproto-oauth/Cargo.toml
+1
-1
crates/atproto-oauth/README.md
+1
-1
crates/atproto-oauth/README.md