This commit is contained in:
neuecc 2023-02-28 15:33:01 +09:00
parent a550205058
commit 6ff48731b6
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
.vs/ .vs/
dotnet-sandbox/obj/ dotnet-sandbox/obj/
dotnet-sandbox/bin/ dotnet-sandbox/bin/
csbindgen/cargo

View File

@ -2,6 +2,7 @@
name = "csbindgen-tests" name = "csbindgen-tests"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
publish = false
# [[bin]] # [[bin]]
# name = "csbindgen-test-app" # name = "csbindgen-test-app"

View File

@ -2,6 +2,17 @@
name = "csbindgen" name = "csbindgen"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = [
"Yoshifumi Kawai <ils@neue.cc>",
"Cysharp, Inc."
]
description = "Generate C# FFI from Rust for brings C native library to .NET and Unity easily."
keywords = ["bindings", "ffi", "code-generation", "csharp"]
categories = ["external-ffi-bindings", "development-tools::ffi"]
license = "MIT"
readme = "../README.md"
homepage = "https://github.com/Cysharp/csbindgen/"
repository = "https://github.com/Cysharp/csbindgen/"
[dependencies] [dependencies]
syn = { version = "1.0.109", features = ["full"] } syn = { version = "1.0.109", features = ["full"] }