diff options
| author | Fuwn <[email protected]> | 2022-03-23 01:01:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-23 01:01:33 -0700 |
| commit | 4462f6f8cd4d307f4ae180ed0a180628f3ba762f (patch) | |
| tree | fc7b80f76de66967a9f2365debf9a644dea98cf5 /Cargo.toml | |
| download | archived-sen-py-4462f6f8cd4d307f4ae180ed0a180628f3ba762f.tar.xz archived-sen-py-4462f6f8cd4d307f4ae180ed0a180628f3ba762f.zip | |
feat: 0.1.0 :star:
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..917f39b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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" |