summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: b00c706a2dd717b80d727d2c9d4b557c7709e9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

extern crate libc;

#[macro_use]
extern crate wire_format_derive;

mod protocol;
mod server;

#[cfg(fuzzing)]
pub mod fuzzing;

pub use server::*;