aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml')
-rw-r--r--content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml b/content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml
new file mode 100644
index 0000000..23ea182
--- /dev/null
+++ b/content/2022-05-30-cmake-cargo-example/libcalc/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "calc"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["staticlib"]
+
+[build-dependencies]
+cbindgen = "0.*"