zantetsu-vecdb 0.1.4

Canonical anime title matching via Kitsu dumps or remote endpoints
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Zantetsu VecDB
//!
//! Canonical title matching for parsed anime names.
//!
//! The current implementation supports two backends:
//! - A local Kitsu SQL dump (`latest.sql` or `latest.sql.gz`)
//! - A remote GraphQL endpoint compatible with the expected anime search schema

pub mod error;
mod matcher;

pub use error::{MatchResult, MatcherError};
pub use matcher::{
    AnimeIds, AnimeTitleMatch, MatchProvider, MatchSource, TitleMatcher,
    default_kitsu_dump_dir,
};