Newer
Older
hkj / Cargo.toml
@Master-Hash Master-Hash 22 days ago 683 bytes no rely on pingora reverse proxy
[package]
name = "hkj"
version = "0.1.0"
edition = "2024"

[[bin]]
name = "hkj"
path = "src/main.rs"

[dependencies]
async-trait = "0.1.89"
base64 = "0.22.1"
bytes = "1.11.1"
env_logger = {
  version = "0.11.10",
  default-features = false,
  features = ["auto-color", "regex"]
}
http = "1.4.0"
instant-acme = {
  version = "0.8.5",
  default-features = false,
  features = ["aws-lc-rs"],
  optional = true
}
log = "0.4.29"
pingora = { version = "0.8.0", features = ["rustls"] }
rand = "0.10.1"
tokio = {
  version = "1.52.3",
  features = ["io-util", "macros", "net", "rt-multi-thread"]
}

[profile.release]
opt-level = 3
strip = true
lto = "fat"
panic = "unwind"
codegen-units = 1