Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/build_msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,15 @@ jobs:
cargo-build-msrv-${{ runner.os }}-${{ runner.arch }}-

- name: Build workspace
run: cargo build --workspace --features full
run: |
cargo build --workspace --exclude dash-pow --features full
cargo build -p dash-pow --features std,aes_hw
env:
RUSTUP_TOOLCHAIN: 1.85.0

- name: Test workspace
run: cargo test --workspace --features full
run: |
cargo test --workspace --exclude dash-pow --features full
cargo test -p dash-pow --features std,aes_hw
env:
RUSTUP_TOOLCHAIN: 1.85.0
4 changes: 4 additions & 0 deletions .github/workflows/build_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ jobs:

- name: Build package
run: cargo build -p ${{ inputs.package }} --features ${{ inputs.features }}
env:
RUSTUP_TOOLCHAIN: stable

- name: Test package
run: cargo test -p ${{ inputs.package }} --features ${{ inputs.features }}
env:
RUSTUP_TOOLCHAIN: stable
9 changes: 9 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
exclude = [
"**/.venv/**",
"**/node_modules/**",
"**/target/**",
]

[formatting]
array_auto_collapse = false
column_width = 80
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"ms-python.vscode-pylance",
"ms-vscode-remote.remote-containers",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"[ql]": {
"editor.rulers": [100]
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml",
"editor.rulers": [80]
},
"editor.formatOnSave": true,
"editor.minimap.enabled": true,
"editor.rulers": [120],
Expand Down
143 changes: 86 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading