[package] name = "myanimelist-rs" version = "0.1.0" authors = ["Jonathan Chapple "] edition = "2018" license = "MIT" keywords = ["anime", "myanimelist", "mal", "manga", "api"] description = "An (unofficial) typesafe wrapper around the official MyAnimeList v2 API" homepage = "https://gitlab.com/joncppl/myanimelist-rs" documentation = "https://docs.rs/myanimelist-rs" repository = "https://gitlab.com/joncppl/myanimelist-rs" readme = "README.md" [dependencies] reqwest = { version = "^0.10.6", features = ["blocking"] } serde = { version = "^1.0.114", features = ["derive"] } serde_urlencoded = "^0.6.1" serde_json = "^1.0.56" url = "^2.1.1" rand = "^0.7.3" httparse = "^1.3.4" strum = "^0.18.0" strum_macros = "^0.18.0" time = "^0.2.16" regex = "^1.3.9" [target.'cfg(windows)'.dependencies] winapi = { version = "^0.3.9", features = ["shellapi"] } [[bin]] name = "auth" path = "examples/auth.rs" [[bin]] name = "sync" path = "examples/sync.rs"