-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
71 lines (66 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 = "rust-route"
version = "0.2.0"
edition = "2021"
authors = ["LITLAY2004 <your.email@example.com>"]
license = "MIT"
description = "A high-performance, production-ready RIP (Routing Information Protocol) router implementation written in Rust"
documentation = "https://docs.rs/rust-route"
homepage = "https://github.com/LITLAY2004/Rust-Route"
repository = "https://github.com/LITLAY2004/Rust-Route"
readme = "README.md"
keywords = ["networking", "routing", "rip", "protocol", "router"]
categories = ["network-programming", "command-line-utilities"]
exclude = [
"target/*",
".git/*",
".github/*",
"*.log",
"*.tmp"
]
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
log = "0.4"
env_logger = "0.10"
rand = "0.8"
uuid = { version = "1.0", features = ["v4", "serde"] }
colored = "2.0"
indicatif = "0.17"
console = "0.15"
comfy-table = "7.0"
tokio-stream = { version = "0.1", features = ["sync"] }
futures-core = "0.3"
async-stream = "0.3"
# Web interface dependencies
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs"] }
hyper = "1.0"
# Authentication and security
jsonwebtoken = "9.0"
bcrypt = "0.15"
# Additional utilities
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
thiserror = "1.0"
# Configuration hot-reload
notify = "6.0"
# IPv6 support
ipnet = { version = "2.9", features = ["serde"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.0"
tokio-test = "0.4"
tempfile = "3"
[[bench]]
name = "routing_benchmarks"
harness = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[profile.bench]
debug = true