├── .github └── workflows │ └── automatic-release.yml ├── .gitignore ├── Cargo.toml ├── README.md ├── run.php └── src └── lib.rs /.github/workflows/automatic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgrim/rust-ffi-test/HEAD/.github/workflows/automatic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgrim/rust-ffi-test/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgrim/rust-ffi-test/HEAD/README.md -------------------------------------------------------------------------------- /run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgrim/rust-ffi-test/HEAD/run.php -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgrim/rust-ffi-test/HEAD/src/lib.rs --------------------------------------------------------------------------------