mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-05-18 15:35:12 +02:00
24 lines
561 B
TOML
24 lines
561 B
TOML
|
|
[package]
|
||
|
|
name = "tarpit"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "tarpit"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
common = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
hyper = { workspace = true }
|
||
|
|
hyper-util = { workspace = true }
|
||
|
|
http-body-util = { workspace = true }
|
||
|
|
hyperlocal = { workspace = true }
|
||
|
|
rand = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
nix = { workspace = true }
|