2021-10-21 08:43:59 +00:00
|
|
|
[package]
|
2024-02-22 21:31:17 +00:00
|
|
|
name = "layer4-proxy"
|
2023-08-25 21:11:29 +00:00
|
|
|
version = "0.1.7"
|
2021-10-25 14:12:44 +00:00
|
|
|
edition = "2021"
|
2024-02-22 21:31:17 +00:00
|
|
|
authors = ["Jacob Kiers <code@kiers.eu>"]
|
2021-10-21 08:43:59 +00:00
|
|
|
license = "Apache-2.0"
|
|
|
|
description = "Simple and fast layer 4 proxy in Rust"
|
|
|
|
readme = "README.md"
|
2024-02-22 21:31:17 +00:00
|
|
|
homepage = "https://code.kiers.eu/jjkiers/layer4-proxy"
|
|
|
|
repository = "https://code.kiers.eu/jjkiers/layer4-proxy"
|
2021-10-21 08:43:59 +00:00
|
|
|
keywords = ["proxy", "network"]
|
|
|
|
categories = ["web-programming"]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-10-26 13:36:12 +00:00
|
|
|
exclude = [".*"]
|
|
|
|
|
2024-02-22 21:31:17 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "l4p"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2021-10-21 08:43:59 +00:00
|
|
|
[dependencies]
|
2024-02-22 20:59:14 +00:00
|
|
|
async-trait = "0.1.73"
|
2023-10-04 21:34:26 +00:00
|
|
|
byte_string = "1"
|
|
|
|
bytes = "1.1"
|
|
|
|
futures = "0.3"
|
2021-10-21 08:43:59 +00:00
|
|
|
log = "0.4"
|
2024-02-22 20:59:14 +00:00
|
|
|
pretty_env_logger = "0.5"
|
2021-10-21 08:43:59 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-06-02 15:35:13 +00:00
|
|
|
serde_yaml = "0.9.21"
|
|
|
|
time = { version = "0.3.1", features = ["local-offset", "formatting"] }
|
2023-10-04 21:34:26 +00:00
|
|
|
tls-parser = "0.11"
|
2021-10-26 13:36:12 +00:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2023-10-04 21:34:26 +00:00
|
|
|
url = "2.2.2"
|