diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 24 |
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" |