actordb/lib.rs
1// Copyright (c) Sean Lawlor
2//
3// This source code is licensed under both the MIT license found in the
4// LICENSE-MIT file in the root directory of this source tree.
5
6#![deny(warnings)]
7#![warn(unused_imports)]
8#![warn(unsafe_code)]
9// #![warn(missing_docs)]
10// #![warn(unused_crate_dependencies)]
11// #![cfg_attr(docsrs, feature(doc_cfg))]
12
13#[cfg(test)]
14pub(crate) mod common_test;
15
16pub mod proto;