fproxy 0.0.2

Facilitate safe rust-to-rust ffi by generating proxies around required types. Useful when a library is loaded at runtime (i.e., dynamic).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "fproxy"
version = "0.0.2"
edition = "2024"
license = "MIT"
description = "Facilitate safe rust-to-rust ffi by generating proxies around required types. Useful when a library is loaded at runtime (i.e., dynamic)."

[dependencies]
fproxy_derive = { path = "./../fproxy_derive", version = "0.0.2" }
libloading = "0.8.9"
safer-ffi = "0.1.13"
delegate = "0.13.4"