This commit is contained in:
John Smith 2021-11-27 21:34:08 -05:00
parent 1cecacd8fd
commit 6127ffb970
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,5 @@
#![warn(clippy::all)]
use anyhow::*;
use async_std::prelude::*;
use clap::{App, Arg};

View File

@ -1,4 +1,5 @@
#![forbid(unsafe_code)]
#![warn(clippy::all)]
mod client_api;
mod settings;
@ -7,8 +8,6 @@ pub mod veilid_client_capnp {
include!(concat!(env!("OUT_DIR"), "/proto/veilid_client_capnp.rs"));
}
cfg_if::cfg_if! {
if #[cfg(windows)] {
mod windows;