mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-04-30 12:46:21 +02:00
27 lines
657 B
TOML
Executable file
27 lines
657 B
TOML
Executable file
[package]
|
|
name = "tarpit"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "tarpit"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "tarpit"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../common", default-features = false, features = ["user"] }
|
|
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 }
|