blob: 6fe10ef4d404ed4c5c4328f9a1b28ead856246a8 (
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.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "The Senpy Club API Wrapper"
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 = "1.0.136"
serde_derive = "1.0.136"
|