diesel_citext/
lib.rs

1//! Diesel support for Postgres citext Extension
2
3#![allow(proc_macro_derive_resolution_fallback)]
4#[macro_use] extern crate diesel;
5
6extern crate serde;
7
8#[cfg(feature = "with-actix-web")]
9extern crate actix_web;
10
11pub mod sql_types;
12pub mod types;