Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ rsky (/ˈrɪski/) is intended to be a full implementation of [AT Protocol](https

**Rust Crates:**

| Crate | Docs | crates.io |
|------------------------------------------------------------|-------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `rsky-crypto`: cryptographic signing and key serialization | [README](./rsky-crypto/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-crypto?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-crypto) |
| `rsky-identity`: DID and handle resolution | [README](./rsky-identity/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-identity?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-identity) |
| `rsky-lexicon`: schema definition language | [README](./rsky-lexicon/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-lexicon?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-lexicon) |
| `rsky-syntax`: string parsers for identifiers | [README](./rsky-syntax/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-syntax?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-syntax) |
| `rsky-common`: shared code | [README](./rsky-common/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-common?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-common) |
| `rsky-repo`: data storage structure, including MST | [README](./rsky-repo/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-repo?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-repo) |
| Crate | Docs | crates.io |
|----------------------------------------------------------------------------|----------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `rsky-crypto`: cryptographic signing and key serialization | [README](./rsky-crypto/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-crypto?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-crypto) |
| `rsky-identity`: DID and handle resolution | [README](./rsky-identity/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-identity?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-identity) |
| `rsky-lexicon`: schema definition language | [README](./rsky-lexicon/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-lexicon?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-lexicon) |
| `rsky-syntax`: string parsers for identifiers | [README](./rsky-syntax/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-syntax?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-syntax) |
| `rsky-common`: shared code | [README](./rsky-common/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-common?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-common) |
| `rsky-repo`: data storage structure, including MST | [README](./rsky-repo/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-repo?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-repo) |
| `rsky-oauth`: OAuth 2.1 provider core (JOSE, JWK, DPoP) for atproto | [README](./rsky-oauth/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-oauth?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-oauth) |
| `rsky-space`: permissioned-data (spaces) primitives — LtHash commits, credentials | [README](./rsky-space/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-space?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-space) |
| `rsky-space-host`: space authority/host — issues credentials, routes write notifications | [README](./rsky-space-host/README.md) | [![Crate](https://img.shields.io/crates/v/rsky-space-host?logo=rust&style=flat-square&logoColor=E05D44&color=E05D44)](https://crates.io/crates/rsky-space-host) |

**Rust Services:**

Expand All @@ -48,7 +51,10 @@ rsky (/ˈrɪski/) is intended to be a full implementation of [AT Protocol](https
- `rsky-jetstream-subscriber`: Firehose consumer for Jetstream.
- `rsky-labeler`: Firehose consumer that labels content.
- `rsky-satnav`: "Structured Archive Traversal, Navigation & Verification", a DASL CAR and AT Protocol repository explorer.
- `rsky-wintermute`: Indexer for bsky app-view.
- `rsky-wintermute`: Monolithic indexer for the bsky app-view, combining ingester, backfiller, and indexer.
- `rsky-daemon`: Permissioned-data syncer daemon — pulls, verifies, and indexes permissioned repos from members' PDSes.
- `rsky-video`: Video service — handles uploads, transcoding via Bunny Stream, and playback.
- `palomar-sync`: Syncs `followersFuzzy` and PageRank from PostgreSQL to OpenSearch for Palomar search.

## About AT Protocol

Expand Down
2 changes: 1 addition & 1 deletion rsky-identity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Rudy Fraser <him@rudyfraser.com>"]
description = "Rust library for decentralized identities in atproto using DIDs and handles."
license = "Apache-2.0"
edition = "2021"
publish = false
publish = true
homepage = "https://blackskyweb.xyz"
repository = "https://github.com/blacksky-algorithms/rsky/tree/main/rsky-identity"
documentation = "https://docs.rs/rsky-identity"
Expand Down
2 changes: 1 addition & 1 deletion rsky-oauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Rudy Fraser <him@rudyfraser.com>"]
description = "OAuth provider core (JOSE, JWK, DPoP) for AT Protocol services"
license = "Apache-2.0"
edition = "2021"
publish = false
publish = true
homepage = "https://blackskyweb.xyz"
repository = "https://github.com/blacksky-algorithms/rsky/tree/main/rsky-oauth"

Expand Down
2 changes: 1 addition & 1 deletion rsky-space-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.5.1"
authors = ["Rudy Fraser <him@rudyfraser.com>"]
description = "atproto permissioned-data space authority/host: issues space credentials, manages a space, routes write notifications"
edition = "2021"
publish = false
publish = true
license = "Apache-2.0"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion rsky-space/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.4.1"
authors = ["Rudy Fraser <him@rudyfraser.com>"]
description = "atproto permissioned-data (spaces) primitives: LtHash commits, credentials, space repos"
edition = "2021"
publish = false
publish = true
license = "Apache-2.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rsky-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Rudy Fraser <him@rudyfraser.com>"]
description = "Rust library of validation helpers for identifier strings"
license = "Apache-2.0"
edition = "2021"
publish = false
publish = true
homepage = "https://blackskyweb.xyz"
repository = "https://github.com/blacksky-algorithms/rsky/tree/main/rsky-syntax"
documentation = "https://docs.rs/rsky-syntax"
Expand Down
Loading