Initial commit
This commit is contained in:
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
@ -0,0 +1,26 @@
|
||||
[workspace]
|
||||
default-members = ["bin/bgp"]
|
||||
members = ["bin/*", "crates/*"]
|
||||
|
||||
[workspace.package]
|
||||
authors = ["Rayhaan Jaufeerally <rayhaan+git@rayhaan.ch>"]
|
||||
description = "A Border Gateway Protocol implementation"
|
||||
edition = "2024"
|
||||
license = "Apache 2"
|
||||
name = "bgp"
|
||||
version = "0.0.1"
|
||||
|
||||
[workspace.dependencies]
|
||||
# --- Our crates ---
|
||||
bgp-packet = { path = "crates/packet" }
|
||||
|
||||
# --- General ---
|
||||
bitfield = "0.19.0"
|
||||
bytes = "1.10.1"
|
||||
eyre = "0.6.12"
|
||||
nom = "8.0.0"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
serde_repr = "0.1.20"
|
||||
thiserror = "2.0.12"
|
||||
tokio = { version = "1.44.2", features = ["full"] }
|
||||
Reference in New Issue
Block a user