-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
501 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[build] | ||
rustdocflags = ["--cfg", "docsrs"] | ||
|
||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: rkyv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 10 * * *" | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
RUSTFLAGS: -Dwarnings | ||
|
||
jobs: | ||
features: | ||
name: Features / ${{ matrix.std }} ${{ matrix.derive }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
std: | ||
- '' | ||
- std | ||
derive: | ||
- '' | ||
- derive | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo test --verbose --tests --no-default-features --features "${{ matrix.std }} ${{ matrix.derive }}" | ||
|
||
toolchain: | ||
name: Toolchain / ${{ matrix.toolchain }} ${{ matrix.opt }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
toolchain: | ||
- stable | ||
- beta | ||
- nightly | ||
opt: | ||
- '' | ||
- --release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
- run: cargo test --verbose ${{ matrix.opt }} | ||
|
||
miri: | ||
name: Miri / ${{ matrix.opt }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
opt: | ||
- '' | ||
- --release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@miri | ||
- run: cargo miri setup | ||
- run: cargo miri test ${{ matrix.opt }} --verbose | ||
env: | ||
MIRIFLAGS: -Zmiri-disable-stacked-borrows -Zmiri-tree-borrows | ||
|
||
test: | ||
name: Test / ${{ matrix.target }} ${{ matrix.opt }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
opt: | ||
- '' | ||
- --release | ||
include: | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-gnu | ||
- os: macos-latest | ||
target: aarch64-apple-darwin | ||
- os: windows-latest | ||
target: x86_64-pc-windows-msvc | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo test ${{ matrix.opt }} | ||
|
||
cross: | ||
name: Cross / ${{ matrix.target }} | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target: | ||
- i686-unknown-linux-gnu | ||
- i586-unknown-linux-gnu | ||
- armv7-unknown-linux-gnueabihf | ||
- aarch64-unknown-linux-gnu | ||
- thumbv6m-none-eabi | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo install cross | ||
- run: cross build --no-default-features --features "derive" --target ${{ matrix.target }} --verbose | ||
|
||
format: | ||
name: Format | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
- run: cargo fmt --check | ||
|
||
clippy: | ||
name: Clippy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: clippy | ||
- run: cargo clippy | ||
|
||
doc: | ||
name: Doc | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,15 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
authors = ["David Koloski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
documentation = "https://docs.rs/ptr_meta" | ||
repository = "https://github.com/rkyv/ptr_meta" | ||
|
||
[workspace.dependencies] | ||
proc-macro2 = "1.0" | ||
ptr_meta_derive = { version = "0.3.0-alpha.2", path = "ptr_meta_derive" } | ||
syn = { version = "2.0", features = ["full"] } | ||
quote = "1.0" | ||
proc-macro2 = { version = "1.0", default-features = false } | ||
ptr_meta_derive = { version = "0.3.0-alpha.2", default-features = false, path = "ptr_meta_derive" } | ||
syn = { version = "2", default-features = false } | ||
quote = { version = "1", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.