blob: 917f39b63761e94bf442f18a23bc007945ee781f (
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 = "sen-py"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "The Senpy Club API Wrapper for Python"
readme = "README.rst"
homepage = "https://github.com/senpy-club/sen-py"
repository = "https://github.com/senpy-club/sen-py"
license = "GPL-3.0-only"
keywords = ["rust", "anime", "senpy", "senpy-club"]
categories = ["web-programming", "api-bindings"]
[lib]
name = "sen_py"
crate-type = ["cdylib"]
[dependencies]
# Python
pyo3 = { version = "0.16.1", features = ["extension-module"] }
# The Senpy Club
senpy = "0.1.2"
|