Skip to content

Commit

Permalink
refactor into v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 16, 2024
1 parent 70b5528 commit 68cf342
Show file tree
Hide file tree
Showing 42 changed files with 282 additions and 6,043 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+[.0-9]*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+[.0-9]*'

env:
CARGO_TERM_COLOR: always
Expand All @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
feature: [ fs, serde ]
feature: [ serde ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+[.0-9]*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+[.0-9]*'

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+[.0-9]*'

env:
CARGO_TERM_COLOR: always
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/run.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+[.0-9]*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+[.0-9]*'

env:
CARGO_TERM_COLOR: always
Expand Down
12 changes: 7 additions & 5 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
edition = "2021"
style_edition = "2021"

max_width = 100
array_width = 100
attr_fn_like_width = 100
max_width = 120
array_width = 120
attr_fn_like_width = 120
comment_width = 100
fn_call_width = 100
single_line_if_else_max_width = 100
chain_width = 60
fn_call_width = 120
single_line_if_else_max_width = 120
struct_lit_width = 60

fn_single_line = true
format_code_in_doc_comments = true
Expand Down
Loading

0 comments on commit 68cf342

Please sign in to comment.