Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.1.9 release #222

Merged
merged 12 commits into from
Jul 8, 2024
Merged
4 changes: 3 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-06-30
toolchain: nightly-2023-09-14
override: true
components: rust-src

Expand Down Expand Up @@ -113,6 +113,7 @@ jobs:
feature--dyn-traits: ['', '--features dyn-traits', '--features futures', '--features tokio']
# feature--log: ['', '--features log']
feature--js: ['', '--features js']
feature--stabby: ['', '--features stabby']
steps:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -134,6 +135,7 @@ jobs:
${{ matrix.feature--headers }}
${{ matrix.feature--dyn-traits }}
${{ matrix.feature--js }}
${{ matrix.feature--stabby }}

# == BUILD & TEST == #
build-and-test:
Expand Down
31 changes: 8 additions & 23 deletions Cargo.lock

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

13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ path = "src/_lib.rs"

[package]
name = "safer-ffi"
version = "0.1.9-rc2" # Keep in sync
version = "0.1.9-rc3" # Keep in sync
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
edition = "2021"
rust-version = "1.72.1"

description = "Write safer FFI code in Rust without polluting it with unsafe code"
keywords = [
Expand Down Expand Up @@ -65,7 +66,9 @@ futures = [
"dyn-traits",
]

stabby = ["dep:stabby"]
stabby = [
"dep:stabby",
]

tokio = [
"async-compat",
Expand Down Expand Up @@ -141,10 +144,10 @@ paste.version = "1.0.12"
scopeguard.version = "1.1.0"
scopeguard.default-features = false

stabby.version = "36.1.1-rc5"
stabby.version = "36.1.1-rc8"
stabby.optional = true
stabby.default-features = false
stabby.features = ["experimental-ctypes"]
stabby.features = ["experimental-ctypes", "alloc-rs"]

tokio.optional = true
tokio.version = "1.26.0"
Expand All @@ -168,7 +171,7 @@ version = "0.0.3"

[dependencies.safer_ffi-proc_macros]
path = "src/proc_macro"
version = "=0.1.8" # Keep in sync
version = "=0.1.9-rc3" # Keep in sync

[workspace]
members = [
Expand Down
Loading
Loading