-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 875 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 875 Bytes
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
26
27
[package]
name = "anilist_moe"
version = "0.3.3"
description = "Anilist_Moe is a Rust Wrapper for the Anilist API. This library allows you to seamlessly interact with Anilist's Public API with and without authentication. This currently supports Anime, Manga, Users, Staff, Forum, Threads, Recommendations, Reviews and User Activities"
edition = "2021"
license = "MIT"
repository = "https://github.com/Thunder-Blaze/anilist_moe/"
keywords = ["wrapper", "api", "anilist"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.12.12", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.11"
tokio = { version = "1.0", features = ["full"] }
thiserror = "1.0"
chrono = "0.4.41"
dotenv = "0.15.0"
log = "0.4.22"
[dev-dependencies]
husky-rs = "0.1.5"
tokio-test = "0.4"