Skip to content

Commit

Permalink
remove warnings, propegate version because of msrv feature that hasn'…
Browse files Browse the repository at this point in the history
…t landed, move examples
  • Loading branch information
James Connolly committed May 20, 2024
1 parent 049b722 commit 3d2001e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- nightly

steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

semver:
name: Check Semantic Versioning
Expand All @@ -44,9 +44,9 @@ jobs:
with:
tool: cargo-msrv
- name: Check MSRV
working-directory: wellen
run: cargo msrv verify


examples:
name: Try Examples
runs-on: ubuntu-latest
Expand All @@ -64,6 +64,7 @@ jobs:
- name: Build
run: cargo build --verbose --examples --release
- name: load_signals
working-directory: wellen
run: cargo run --release --example load_signals -- inputs/xilinx_isim/test1.vcd

serialization:
Expand Down
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[workspace]
resolver = "2"
members = ["wellen"]
default-members = ["wellen"]

[workspace.package]
version = "0.9.10"
Expand All @@ -15,7 +16,8 @@ authors = ["Kevin Laeufer <[email protected]>"]
description = "Fast VCD and FST library for waveform viewers written in Rust."
repository = "https://github.com/ekiwi/wellen"
license = "BSD-3-Clause"
default-members = ["wellen"]


include = ["Cargo.toml", "LICENSE", "src/", "benches/"]
keywords = ["vcd", "fst", "waveform", "wavedump"]

Expand Down
3 changes: 1 addition & 2 deletions wellen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
name = "wellen"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
rust-version = "1.73.0"
authors.workspace = true
description.workspace = true
repository.workspace = true
license.workspace = true
default-members.workspace = true
include.workspace = true
keywords.workspace = true

Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions wellen/inputs

0 comments on commit 3d2001e

Please sign in to comment.