rspc_core/lib.rs
1//! Core types and traits for [`rspc`].
2//!
3//! Middleware and extension authors should prefer to depend on this crate instead of `rspc`.
4#![forbid(unsafe_code)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6#![doc(
7 html_logo_url = "https://github.com/specta-rs/rspc/raw/main/.github/logo.png",
8 html_favicon_url = "https://github.com/specta-rs/rspc/raw/main/.github/logo.png"
9)]