blob: f7fa54c5ba43e85621f0a4d3c7202259dd1e1820 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#![feature(const_fn)]
#![feature(nonzero)]
#![feature(proc_macro, proc_macro_non_items)]
#![feature(repr_transparent)]
extern crate byteorder;
extern crate ip_macro;
extern crate zerocopy;
mod device;
mod ip;
mod queue;
mod transport;
mod wire;
fn main() {}