Skip to content

Commit de1c14b

Browse files
committed
fixes #2
1 parent c721775 commit de1c14b

File tree

8 files changed

+427
-398
lines changed

8 files changed

+427
-398
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: actions/cache@v2
11-
with:
12-
path: |
13-
~/.cargo/bin/
14-
~/.cargo/registry/index/
15-
~/.cargo/registry/cache/
16-
~/.cargo/git/db/
17-
target/
18-
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
1910
- uses: actions-rs/toolchain@v1
2011
with:
2112
toolchain: nightly

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bit-struct"
3-
version = "0.1.19"
3+
version = "0.1.20"
44
edition = "2021"
55
description = "Define structs which have fields which are assigned to individual bits, not bytes"
66
repository = "https://github.com/andrewgazelka/bit-struct"

rustfmt.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://rust-lang.github.io/rustfmt/?version=v1.4.36
2+
unstable_features = true
3+
reorder_imports = true
4+
normalize_comments = true
5+
normalize_doc_attributes = true
6+
imports_granularity = "Crate"
7+
format_macro_matchers = true
8+
format_macro_bodies = true
9+
wrap_comments = true
10+
format_code_in_doc_comments = true

0 commit comments

Comments
 (0)