diff options
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..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" |