diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "extism-hs"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["staticlib"]
+
+[dependencies]
+extism = "1.2"
diff --git a/extism.cabal b/extism.cabal
--- a/extism.cabal
+++ b/extism.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               extism
-version:            1.2.0.1
+version:            1.2.0.2
 license:            BSD-3-Clause
 maintainer:         oss@extism.org
 author:             Extism authors
@@ -9,7 +9,7 @@
 description:        Bindings to Extism, the universal plugin system
 category:           Plugins, WebAssembly
 extra-doc-files: cabal.project README.md CHANGELOG.md
-extra-source-files: scripts/download-or-build.sh
+extra-source-files: Cargo.toml src/lib.rs scripts/download-or-build.sh
 
 build-type:         Custom
 custom-setup
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,1 @@
+pub use extism::sdk::*;
