summaryrefslogtreecommitdiff
path: root/ffi/Cargo.toml
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-03-09 19:42:12 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-03-09 19:42:12 +0800
commitf7e36925c566cd8336e71eb507c8a766240f03a0 (patch)
treeba92f1d6a69a738e00a1d77b5f19cbbe7c57deab /ffi/Cargo.toml
parent2827668ab5f38c05f95a0060988313c449436267 (diff)
Add C FFI bindings for library usage
Diffstat (limited to 'ffi/Cargo.toml')
-rw-r--r--ffi/Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
new file mode 100644
index 0000000..64f311e
--- /dev/null
+++ b/ffi/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "butchunker_ffi"
+version = "0.1.0"
+edition = "2024"
+
+[lib]
+crate-type = ["cdylib", "staticlib"]
+name = "lib_butck"
+
+[dependencies]
+libc = "0.2"
+butchunker = { path = "../" }