aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-13 07:17:44 -0700
committerFuwn <[email protected]>2022-03-13 07:17:44 -0700
commit58966d1102cc6baafd90269ab2523d3f6da98e55 (patch)
treea48a0bef996bf2cef942a6d4a0b9ea23c668afe3 /Cargo.toml
downloadsenpy-ffi-58966d1102cc6baafd90269ab2523d3f6da98e55.tar.xz
senpy-ffi-58966d1102cc6baafd90269ab2523d3f6da98e55.zip
feat(senpy_ffi): 0.1.0 :star:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..c8a7190
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,24 @@
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[package]
+name = "senpy-ffi"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2021"
+description = "FFI bindings for senpy-rs"
+readme = "README.rst"
+homepage = "https://github.com/senpy-club/senpy-ffi"
+repository = "https://github.com/senpy-club/senpy-ffi"
+license = "GPL-3.0-only"
+keywords = ["rust", "anime", "senpy", "senpy-club"]
+categories = ["web-programming", "api-bindings"]
+
+[lib]
+crate-type = ["dylib"]
+
+[dependencies]
+# Senpy
+senpy = "0.1.2"
+
+# FFI
+libc = "0.2.119"