18 lines
365 B
TOML
18 lines
365 B
TOML
|
|
[package]
|
||
|
|
name = "gatuna"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
license = "CC0-1.0"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "gatunad"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
libc = "0.2"
|
||
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "sync", "io-util"] }
|
||
|
|
clap = { version = "4", features = ["derive"] }
|
||
|
|
pnet_datalink = "0.35"
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = "0.3"
|