forked from ipfs-rust/netsim-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 932 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
[workspace]
members = ["cli", "core", "machine", "nat", "router", "."]
[package]
name = "netsim-embed"
version = "0.7.1"
authors = ["David Craven <[email protected]>"]
edition = "2018"
description = "Network simulator."
license = "MIT"
repository = "https://github.com/ipfs-rust/netsim-embed"
[dependencies]
async-global-executor = "2.0.2"
async-process = "1.0.2"
futures = "0.3.13"
libpacket = "0.1.0"
log = "0.4.14"
netsim-embed-core = { version = "0.4.2", path = "core" }
netsim-embed-machine = { version = "0.6.1", path = "machine" }
netsim-embed-nat = { version = "0.4.1", path = "nat" }
netsim-embed-router = { version = "0.4.5", path = "router" }
[dev-dependencies]
anyhow = "1.0.40"
async-io = "1.3.1"
async-process = "1.0.2"
async-std = { version = "1.9.0", features = ["attributes"] }
async-trait = "0.1.50"
env_logger = "0.8.3"
if-watch = "0.2.2"
ipnet = "2.3.0"
netsim-embed-cli = { path = "cli" }
udp-socket = "0.1.1"