Skip to content

Commit

Permalink
refactor!: v0.4.0 main rewrite (#150)
Browse files Browse the repository at this point in the history
0.4.0 rewrite, more modular more awesome thanks to @beeb
  • Loading branch information
beeb committed Sep 6, 2024
1 parent 22857d6 commit 940039c
Show file tree
Hide file tree
Showing 45 changed files with 6,333 additions and 7,406 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ name: Rust

on:
push:
branches: ["main"]
branches: ['main']
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
build-test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -59,7 +61,7 @@ jobs:
cache-on-failure: true
- run: cargo doc --workspace --all-features --no-deps --document-private-items
env:
RUSTDOCFLAGS: "--cfg docsrs -D warnings"
RUSTDOCFLAGS: '--cfg docsrs -D warnings'

fmt:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"rust-analyzer.rustfmt.extraArgs": ["+nightly"],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
},
"rust-analyzer.cargo.features": "all"
}
Loading

0 comments on commit 940039c

Please sign in to comment.