CLI app for developers prototyping atproto functionality
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Release 0.1.0

+11 -3
+1 -1
Cargo.lock
··· 154 154 155 155 [[package]] 156 156 name = "atproto-devtool" 157 - version = "0.0.0" 157 + version = "0.1.0" 158 158 dependencies = [ 159 159 "assert_cmd", 160 160 "async-trait",
+9 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "atproto-devtool" 3 - version = "0.0.0" 3 + version = "0.1.0" 4 4 authors = ["Jack Grigg <thestr4d@gmail.com>"] 5 5 edition = "2024" 6 6 rust-version = "1.85" 7 + description = "A multitool for the atproto developer ecosystem" 8 + repository = "https://tangled.org/str4d.xyz/atproto-devtool" 7 9 license = "MIT OR Apache-2.0" 10 + keywords = ["atmosphere", "bluesky"] 11 + categories = [ 12 + "command-line-utilities", 13 + "development-tools::testing", 14 + "web-programming", 15 + ] 8 16 9 17 [dependencies] 10 18 async-trait = "0.1"
+1 -1
README.md
··· 6 6 7 7 | Environment | CLI command | 8 8 |-------------|-------------| 9 - | Cargo (Rust 1.85+) | `cargo install --path .` | 9 + | Cargo (Rust 1.85+) | `cargo install atproto-devtool` | 10 10 11 11 ## Usage 12 12