blob: a65889f0a4e1e72d0dc9168cf41a8cecc6bffcea (
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"
version = "0.1.3"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "The Senpy Club API Wrapper"
documentation = "https://docs.rs/senpy/"
readme = "README.rst"
homepage = "https://github.com/senpy-club/senpy-rs"
repository = "https://github.com/senpy-club/senpy-rs"
license = "GPL-3.0-only"
keywords = ["rust", "anime", "senpy", "senpy-club"]
categories = ["web-programming", "api-bindings"]
[dependencies]
# HTTP
reqwest = { version = "0.11.9", features = ["json", "blocking"] }
# Constant
const_format = "0.2.22"
# Serialization
serde = { version = "1.0.136", features = ["derive"] }
|