-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 964 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "uki"
version = "0.3.1"
edition = "2021"
authors = ["Saber Haj Rabiee"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sabify/uki"
keywords = ["encryption", "udp", "tcp", "udp-over-tcp", "tunnel"]
categories = ["network-programming"]
readme = "README.md"
description = """
Uki is a fast, simple and cross-platform UDP and TCP packet forwarder and encryptor.
"""
[dependencies]
udpflow = { version = "0.2", package = "forky-udpflow" }
clap = { version = "4.3.10", features = ["default", "derive", "cargo"] }
daemonize = "0.5.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
opool = "0.1"
cfg-if = "1.0"
tokio = { version = "1", features = ["full"] }
futures = "0.3.28"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.5", optional = true }
[features]
default = []
alloc-jem = ["jemallocator"]
[profile.release]
lto = true
codegen-units = 1
incremental = false
panic = "unwind"
strip = true