forked from canndrew/netsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 832 Bytes
/
Cargo.toml
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
[package]
name = "netsim"
version = "0.2.5"
authors = ["Andrew Cann <[email protected]>"]
description = "Network simulator"
repository = "https://github.com/canndrew/netsim"
license = "MIT OR BSD-3-Clause"
keywords = ["network", "ip", "testing"]
categories = ["development-tools::testing", "network-programming", "simulation"]
readme = "README.md"
[dependencies]
libc = "=0.2.50"
unwrap = "1.1"
get_if_addrs = "0.5"
future-utils = "0.8.0"
futures = "0.1.18"
tokio-core = "0.1.12"
tokio-io = "0.1.5"
void = "1.0.2"
net-literals = "0.1.2"
rand = "0.4"
rand_derive = "0.3.1"
ioctl-sys = "0.5.2"
bytes = "0.4.6"
mio = "0.6.13"
quick-error = "1.2.1"
log = "0.4.1"
env_logger = "0.4.0"
capabilities = "0.3.0"
byteorder = "1.2.1"
statrs = "0.9.0"
[dev-dependencies]
bincode = "0.9.2"
[features]
linux_host = []
default = ["linux_host"]