summaryrefslogtreecommitdiff
path: root/ffi/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'ffi/Cargo.toml')
-rw-r--r--ffi/Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
new file mode 100644
index 0000000..5d1e562
--- /dev/null
+++ b/ffi/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+name = "jvlib"
+edition = "2024"
+version.workspace = true
+
+[lib]
+crate-type = ["cdylib", "staticlib"]
+name = "jvlib"
+
+[dependencies]
+libc = "0.2"
+
+# FFI Import
+constants = { path = "../systems/_constants" }