blob: 2fc50d966ff13d67fd641203ba9e0092570fca5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "senpy-ffi"
version = "0.1.3"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "FFI bindings for senpy-rs"
documentation = "https://docs.rs/senpy-ffi/"
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.3"
# FFI
libc = "0.2.119"
|