summaryrefslogtreecommitdiff
path: root/ffi/Cargo.toml
diff options
context:
space:
mode:
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 = "../" }