Skip to content

Commit

Permalink
Merge branch 'v0.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 23, 2024
2 parents 352230e + b35c8d5 commit c1a9225
Show file tree
Hide file tree
Showing 59 changed files with 3,062 additions and 16,089 deletions.
23 changes: 4 additions & 19 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]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand All @@ -35,9 +35,7 @@ jobs:
matrix:
feature:
- log
- ascii-armor
- secp256k1
- curve25519
- armor
- serde
- stl
steps:
Expand All @@ -47,19 +45,6 @@ jobs:
run: cargo check --workspace --no-default-features --features=std,${{matrix.feature}}
- name: Feature ${{matrix.feature}}
run: cargo check --workspace --features=${{matrix.feature}}
features-nostd:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
feature:
- secp256k1
- curve25519
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Feature ${{matrix.feature}}
run: cargo check --workspace --no-default-features --features=alloc,${{matrix.feature}}
platforms:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -76,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.77.0 ]
toolchain: [ nightly, beta, stable, 1.81.0 ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
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]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
7 changes: 6 additions & 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]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -38,3 +38,8 @@ jobs:
components: rust-docs
- name: Formatting
run: cargo +nightly doc --workspace --all-features
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
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]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
3 changes: 2 additions & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ max_width = 100
array_width = 100
attr_fn_like_width = 100
comment_width = 100
chain_width = 100
chain_width = 60
fn_call_width = 100
single_line_if_else_max_width = 100
struct_lit_width = 60

fn_single_line = true
format_code_in_doc_comments = true
Expand Down
Loading

0 comments on commit c1a9225

Please sign in to comment.