Skip to content
Draft
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: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ env:
jobs:
# Check no_std #
check-nostd:
name: 'Check `#![no_std]`'
name: "Check `#![no_std]`"
runs-on: ubuntu-latest
steps:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2025-01-03 # branch-from-master date of 1.85.0
toolchain: nightly-2025-10-30 # branch-from-master date of 1.91.0
override: true
components: rust-src

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2025-01-03 # branch-from-master date of 1.85.0
toolchain: nightly-2025-10-30 # branch-from-master date of 1.91.0
override: true
components: rustfmt

Expand All @@ -75,7 +75,7 @@ jobs:
- macos-latest
# - windows-latest
rust:
- 1.85.0
- 1.91.0
- stable
# - nightly
steps:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.85.0
toolchain: 1.91.0
override: true

- name: Clone repo
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
fi
echo "All jobs succeeded"

# Deploy to Github pages #
# Deploy to GitHub pages #
deploy:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
Expand Down
12 changes: 7 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
**/*.rs.bk
*.code-workspace
.DS_Store
/target
.idea/
examples/point/Cargo.lock
examples/point/main
filename.h
generated.cffi
generated.cs
generated.h
generated.lua
/generated.cffi
/generated.cs
/generated.h
/generated.lua
/generated.metadata.json
target/
40 changes: 35 additions & 5 deletions Cargo.lock

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

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

[package]
name = "safer-ffi"
version = "0.2.0-alpha.0" # Keep in sync
version = "0.2.0-rc1" # Keep in sync
authors = ["Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"]
edition = "2024"
rust-version = "1.85.0"
Expand All @@ -15,7 +15,11 @@ repository = "https://github.com/getditto/safer_ffi"

readme = "README.md"

exclude = ["/guide"]
exclude = [
"/guide",
"/ffi_tests",
"/js_tests",
]

[features]
default = ["std"]
Expand Down Expand Up @@ -89,6 +93,8 @@ async-compat.version = "0.2.1"

extern-c.version = "0.1.0"

extension-traits.version = "2.0.1"

futures.optional = true
futures.version = "0.3.24"

Expand Down Expand Up @@ -144,7 +150,7 @@ version = "0.0.3"

[dependencies.safer_ffi-proc_macros]
path = "src/proc_macro"
version = "=0.2.0-alpha.0" # Keep in sync
version = "=0.2.0-rc1" # Keep in sync

[workspace]
members = [
Expand Down
40 changes: 35 additions & 5 deletions ffi_tests/Cargo.lock

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

Loading
Loading