-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (68 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
71 lines (68 loc) · 1.75 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "phantomlink"
version = "0.1.1"
edition = "2021"
rust-version = "1.88.0"
build = "build.rs"
authors = [
"Andreas Schmidt <schmidt@depend.uni-saarland.de>",
"Robin Ohs <ohs@depend.uni-saarland.de>",
"Gregory Stock <stock@depend.uni-saarland.de>",
]
keywords = [
"linux",
"network-emulation",
"virtual-link",
"aerospace",
"command-line",
]
categories = [
"network-programming",
"science",
"aerospace::simulation",
"command-line-utilities",
"simulation",
]
readme = "README.md"
repository = "https://github.com/robinohs/phantomlink"
license = "MIT OR Apache-2.0"
description = "phantomlink looks like a multi-hop Internet path, but emulates a virtual end-to-end link"
include = [
"build.rs",
"src/**/*.rs",
"Cargo.toml",
"LICENSE-MIT",
"LICENSE-APACHE",
]
[package.metadata.cargo-udeps.ignore]
normal = ["husky-rs"]
[dependencies]
camino = "1.1.10"
clap = { version = "4.6.1", features = ["derive"] }
clap_complete = "4.6.2"
clap_complete_nushell = "4.6.0"
color-eyre = "0.6.3"
core_affinity = "0.8.3"
crossbeam = "0.8.4"
csv = "1.3.1"
ctrlc = { version = "3.4.7", features = ["termination"] }
env_logger = "0.11.10"
etherparse = "0.19.0"
eyre = "0.6.12"
husky-rs = "0.3.2"
libc = "0.2.185"
log = "0.4.27"
netlink-packet-core = "0.7.0"
netlink-packet-sock-diag = { version = "0.4.2", features = ["rich_nlas"] }
netlink-sys = "0.8.7"
nix = { version = "0.31.2", features = ["user"] }
pnet = "0.35.0"
serde = { version = "1.0.219", features = ["derive"] }
shadow-rs = { version = "1.1.1", default-features = false }
spin_sleep = "1.3.1"
tempfile = "3.20.0"
thiserror = "2.0.18"
thread-priority = "3.0.0"
uom = { version = "0.38.0", features = ["si", "serde", "u64"] }
[build-dependencies]
shadow-rs = "1.1.1"