[package]
edition = "2024"
name = "animedb-api"
version = "0.3.5"
authors = ["animedb contributors"]
build = false
exclude = [
"target/",
".git/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphQL API for the animedb Rust metadata catalog"
homepage = "https://github.com/enrell/animedb"
documentation = "https://docs.rs/animedb"
readme = "README.md"
keywords = [
"anime",
"graphql",
"api",
"metadata",
]
categories = [
"web-programming",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/enrell/animedb"
[lib]
name = "animedb_api"
path = "src/lib.rs"
[[bin]]
name = "animedb-api"
path = "src/main.rs"
[dependencies.animedb]
version = "0.3.3"
features = ["local-db"]
[dependencies.async-graphql]
version = "7"
[dependencies.async-graphql-axum]
version = "7"
[dependencies.axum]
version = "0.8"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]