Skip to content

Commit

Permalink
Move inner data to lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
notgull committed Mar 30, 2023
1 parent 690cae5 commit 9e32177
Show file tree
Hide file tree
Showing 7 changed files with 237 additions and 353 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Run cargo check (without dev-dependencies to catch missing feature flags)
if: startsWith(matrix.rust, 'nightly')
run: cargo check -Z features=dev_dep
- run: cargo test --features __test --all
- run: cargo build --no-default-features --all
- run: cargo test --all
- run: cargo test --no-default-features --tests
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- run: rustup target add thumbv7m-none-eabi
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup toolchain install nightly --component miri && rustup default nightly
- run: cargo miri test --features __test --all
- run: cargo miri test --all
env:
MIRIFLAGS: -Zmiri-strict-provenance -Zmiri-symbolic-alignment-check -Zmiri-disable-isolation
RUSTFLAGS: ${{ env.RUSTFLAGS }} -Z randomize-layout
Expand Down
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ exclude = ["/.*"]
default = ["std"]
std = ["parking"]

# Unstable, test only feature. Do not enable this.
__test = []

[dependencies]
crossbeam-utils = { version = "0.8.12", default-features = false }
parking = { version = "2.0.0", optional = true }
Expand Down
213 changes: 0 additions & 213 deletions src/inner.rs

This file was deleted.

0 comments on commit 9e32177

Please sign in to comment.