You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
522 B
32 lines
522 B
// rustfmt
|
|
|
|
#![deny(fat_ptr_transmutes,
|
|
trivial_numeric_casts, unsafe_code,
|
|
unstable_features, unused_extern_crates,
|
|
unused_import_braces, unused_qualifications,
|
|
variant_size_differences
|
|
)]
|
|
|
|
#![warn(
|
|
unused_results
|
|
)]
|
|
|
|
/*
|
|
#![warn(missing_docs, trivial_casts,
|
|
missing_copy_implementations,
|
|
missing_debug_implementations
|
|
)]
|
|
*/
|
|
|
|
#![allow(box_pointers)]
|
|
|
|
extern crate regex;
|
|
extern crate users;
|
|
|
|
pub mod command_runner;
|
|
pub mod loggers;
|
|
pub mod symbols;
|
|
pub mod schema;
|
|
pub mod repository;
|
|
pub mod resources;
|
|
pub mod storage;
|