Skip to content

Commit

Permalink
docs(crate): add docs for crate
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsonin committed May 9, 2024
1 parent aab4fe3 commit 975cfe2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: cargo test
run: cargo test --lib --bins --tests
- name: Run tests with all features
run: cargo test --all-features
run: cargo test --lib --bins --tests --all-features
- name: Run tests with all features in release mode
run: cargo test --all-features --release
run: cargo test --lib --bins --tests --all-features --release
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gset"
version = "1.0.0"
version = "1.0.1"
authors = ["Andrew Sonin <sonin.cel@yandex.ru>"]
description = "A procedural macro for generating the most basic getters and setters on fields."
categories = ["development-tools::procedural-macro-helpers"]
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![doc = include_str!("../README.md")]

use field_attribute_layout::AttributeLayout;
use proc_macro::TokenStream;
use proc_macro2::TokenStream as TokenStream2;
Expand Down

0 comments on commit 975cfe2

Please sign in to comment.