Skip to content

Commit 75c88c0

Browse files
committed
readmes
1 parent 0a2157e commit 75c88c0

File tree

6 files changed

+17
-3
lines changed

6 files changed

+17
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ jobs:
5252

5353
- name: Install Rust
5454
uses: dtolnay/rust-toolchain@stable
55+
with:
56+
components: rustfmt
5557

5658
- name: Cache dependencies
5759
uses: actions/cache@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
run: cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
4949

5050
- name: Dry run publish (check only)
51-
run: cargo workspaces publish --dry-run --yes --no-git-commit --no-git-tag --no-git-push
51+
run: cargo workspaces publish --dry-run --yes --no-git-commit
5252

5353
- name: Publish to crates.io
5454
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
55-
run: cargo workspaces publish --yes --no-git-commit --no-git-tag --no-git-push
55+
run: cargo workspaces publish --yes --no-git-commit
5656

5757
create-release:
5858
name: Create GitHub Release

crates/address-book/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Address Book
22

3+
[![Crates.io](https://img.shields.io/crates/v/address-book.svg)](https://crates.io/crates/address-book)
4+
[![Documentation](https://docs.rs/address-book/badge.svg)](https://docs.rs/address-book)
5+
36
A Rust library for managing and tracking Solana addresses used in transactions. This crate provides a comprehensive address book system that helps with debugging and transaction analysis by maintaining labeled mappings of Solana public keys to their roles and purposes.
47

58
## Features
@@ -78,4 +81,4 @@ This library is particularly useful for:
7881

7982
## License
8083

81-
MIT
84+
MIT

crates/anchor-utils/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# anchor-utils
22

3+
[![Crates.io](https://img.shields.io/crates/v/anchor-utils.svg)](https://crates.io/crates/anchor-utils)
4+
[![Documentation](https://docs.rs/anchor-utils/badge.svg)](https://docs.rs/anchor-utils)
5+
36
Utility functions for working with Anchor programs in Solana.
47

58
## Features

crates/testsvm-quarry/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# testsvm-quarry
22

3+
[![Crates.io](https://img.shields.io/crates/v/testsvm-quarry.svg)](https://crates.io/crates/testsvm-quarry)
4+
[![Documentation](https://docs.rs/testsvm-quarry/badge.svg)](https://docs.rs/testsvm-quarry)
5+
36
Testing utilities for the Quarry protocol on Solana using the TestSVM framework.
47

58
## Overview

crates/testsvm/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# testsvm
22

3+
[![Crates.io](https://img.shields.io/crates/v/testsvm.svg)](https://crates.io/crates/testsvm)
4+
[![Documentation](https://docs.rs/testsvm/badge.svg)](https://docs.rs/testsvm)
5+
36
A wrapper around LiteSVM that provides a more user-friendly interface for testing.

0 commit comments

Comments
 (0)