1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-09-16 08:41:28 -04:00

Move aeronmd back out of -sys.

Clap/Ctrlc are still causing issues during static link.
This commit is contained in:
Bradlee Speice 2019-10-06 23:18:57 -04:00
parent dc9fd52e07
commit 7e8f49c347
2 changed files with 0 additions and 5 deletions

View File

@ -13,9 +13,5 @@ bindgen = "0.51"
cmake = "0.1" cmake = "0.1"
dunce = "1.0.0" dunce = "1.0.0"
[dev-dependencies]
clap = "2.33"
ctrlc = "3.1"
[features] [features]
static = [] static = []

View File

@ -1,7 +1,6 @@
//! Media driver startup example based on //! Media driver startup example based on
//! [aeronmd.c](https://github.com/real-logic/aeron/blob/master/aeron-driver/src/main/c/aeronmd.c) //! [aeronmd.c](https://github.com/real-logic/aeron/blob/master/aeron-driver/src/main/c/aeronmd.c)
//! This example demonstrates direct usage of the -sys bindings for the Media Driver API. //! This example demonstrates direct usage of the -sys bindings for the Media Driver API.
//! The main crate has a more Rust-idiomatic example usage.
use aeron_driver_sys::*; use aeron_driver_sys::*;
use clap; use clap;