Skip to content

Commit 1a8ba92

Browse files
authored
feat: Add atrium-identity (move from atrium-oauth) (#285)
* Move atrium-identity from atrium-oauth * Add README * Fix workflows * Remove unused modules
1 parent 7eb8253 commit 1a8ba92

19 files changed

+19
-5
lines changed

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ jobs:
6666
- run: wasm-pack test --node atrium-api
6767
- run: wasm-pack test --node atrium-xrpc
6868
- run: wasm-pack test --node atrium-xrpc-client
69-
- run: wasm-pack test --node atrium-oauth/identity
69+
- run: wasm-pack test --node atrium-identity
7070
- run: wasm-pack test --node atrium-common

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
"atrium-crypto",
66
"atrium-xrpc",
77
"atrium-xrpc-client",
8-
"atrium-oauth/identity",
8+
"atrium-identity",
99
"atrium-oauth/oauth-client",
1010
"bsky-cli",
1111
"bsky-sdk",
@@ -26,7 +26,7 @@ keywords = ["atproto", "bluesky"]
2626
# Intra-workspace dependencies
2727
atrium-api = { version = "0.25.0", path = "atrium-api", default-features = false }
2828
atrium-common = { version = "0.1.0", path = "atrium-common" }
29-
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
29+
atrium-identity = { version = "0.1.0", path = "atrium-identity" }
3030
atrium-xrpc = { version = "0.12.1", path = "atrium-xrpc" }
3131
atrium-xrpc-client = { version = "0.5.11", path = "atrium-xrpc-client" }
3232
bsky-sdk = { version = "0.1.16", path = "bsky-sdk" }
File renamed without changes.

atrium-identity/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ATrium Identity
2+
3+
[![](https://img.shields.io/crates/v/atrium-identity)](https://crates.io/crates/atrium-identity)
4+
[![](https://img.shields.io/docsrs/atrium-identity)](https://docs.rs/atrium-identity)
5+
[![](https://img.shields.io/crates/l/atrium-identity)](https://github.com/sugyan/atrium/blob/main/LICENSE)
6+
[![Rust](https://github.com/sugyan/atrium/actions/workflows/identity.yml/badge.svg?branch=main)](https://github.com/sugyan/atrium/actions/workflows/identity.yml)
7+
8+
Resolver library for decentralized identities in atproto using DIDs and handles.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
#![doc = include_str!("../README.md")]
12
pub mod did;
23
mod error;
34
pub mod handle;
45
pub mod identity_resolver;
5-
pub mod resolver;
66

77
pub use self::error::{Error, Result};

atrium-oauth/identity/src/resolver.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

release-plz.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ git_release_enable = true
3939
git_tag_enable = true
4040
changelog_update = true
4141

42+
[[package]]
43+
name = "atrium-identity"
44+
publish = true
45+
git_release_enable = true
46+
git_tag_enable = true
47+
changelog_update = true
48+
4249
[[package]]
4350
name = "bsky-sdk"
4451
publish = true

0 commit comments

Comments
 (0)