datapress-core 0.3.3

Backend-agnostic core types, config, routing, and HTTP handlers for the datapress dataset server.
Documentation
//! `datapress-core` — shared types used by every backend.
//!
//! Backend-agnostic pieces: configuration parsing, error types, request /
//! response models, schema description, and admin-token auth.

pub mod admin;
#[cfg(feature = "auth")]
pub mod auth;
pub mod backend;
pub mod banner;
pub mod config;
#[cfg(feature = "docs")]
pub mod docs;
pub mod errors;
#[cfg(feature = "explorer")]
pub mod explorer;
pub mod handlers;
pub mod models;
pub mod schema;
pub mod server;
#[cfg(feature = "swagger")]
pub mod swagger;
pub mod timeout;