aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-09 03:01:28 -0800
committerFuwn <[email protected]>2022-03-09 03:01:28 -0800
commite6d31b57b1961bc5f9c0d98dee37de7f40277f23 (patch)
treea7d2d0e6ee825861a633d2b23221dd42664bbc5e /Cargo.toml
downloadsenpy-rs-e6d31b57b1961bc5f9c0d98dee37de7f40277f23.tar.xz
senpy-rs-e6d31b57b1961bc5f9c0d98dee37de7f40277f23.zip
feat(senpy): 0.1.0 :star:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..6fe10ef
--- /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 = "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"