[package]
edition = "2024"
name = "animedb-api"
version = "0.1.0"
authors = ["animedb contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphQL API for the animedb Rust metadata catalog"
readme = "README.md"
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.1.0"
[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",
]