-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathlib.rs
More file actions
41 lines (37 loc) · 1.03 KB
/
lib.rs
File metadata and controls
41 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#![deny(trivial_numeric_casts, warnings)]
#![allow(broken_intra_doc_links)]
#![allow(
clippy::too_many_arguments,
clippy::implicit_hasher,
clippy::module_inception,
clippy::new_without_default
)]
#[macro_use]
extern crate quickcheck_derive;
// Workaround for issue: https://github.com/rust-lang/rust/issues/64450
extern crate offset_mutual_from as mutual_from;
#[macro_use]
pub mod macros;
pub mod app_server;
pub mod consts;
pub mod crypto;
pub mod file;
pub mod funder;
pub mod index_client;
pub mod index_server;
pub mod keepalive;
pub mod net;
pub mod proto_ser;
pub mod relay;
pub mod report;
pub mod secure_channel;
pub mod ser_string;
pub mod wrapper;
include_schema!(report_capnp, "report_capnp");
include_schema!(app_server_capnp, "app_server_capnp");
include_schema!(common_capnp, "common_capnp");
include_schema!(dh_capnp, "dh_capnp");
include_schema!(relay_capnp, "relay_capnp");
include_schema!(funder_capnp, "funder_capnp");
include_schema!(keepalive_capnp, "keepalive_capnp");
include_schema!(index_capnp, "index_capnp");