layer4-proxy/Cargo.toml

31 lines
812 B
TOML
Raw Normal View History

2021-10-21 08:43:59 +00:00
[package]
name = "fourth"
version = "0.1.7"
2021-10-25 14:12:44 +00:00
edition = "2021"
2021-10-21 08:43:59 +00:00
authors = ["LI Rui <lr_cn@outlook.com>"]
license = "Apache-2.0"
description = "Simple and fast layer 4 proxy in Rust"
readme = "README.md"
homepage = "https://github.com/KernelErr/fourth"
repository = "https://github.com/KernelErr/fourth"
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 = [".*"]
2021-10-21 08:43:59 +00:00
[dependencies]
log = "0.4"
pretty_env_logger = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.21"
2021-10-21 08:43:59 +00:00
futures = "0.3"
tls-parser = "0.11"
url = "2.2.2"
time = { version = "0.3.1", features = ["local-offset", "formatting"] }
2021-10-26 13:36:12 +00:00
tokio = { version = "1.0", features = ["full"] }
2021-10-26 15:02:05 +00:00
bytes = "1.1"
byte_string = "1"