c_api_prefix 0.1.0

A Rust Macro that adds required prefixes to functions to allow for C function bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "c_api_prefix"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description="A Rust Macro that adds required prefixes to functions to allow for C function bindings"
license="MIT"
repository="https://github.com/polysoft1/c_api_prefix"

[lib]
proc-macro=true

[dependencies]
syn = {version = "1.0.86", features = ["full"] }
quote = "1.0.15"
proc-macro2 = "1.0.36"