[package]
edition = "2024"
name = "bunflared"
version = "0.1.2"
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Share localhost on a public link, with an absurdly fun terminal show and an agent mode"
readme = "README.md"
keywords = [
"tunnel",
"localhost",
"cloudflare",
"share",
"tui",
]
categories = [
"command-line-utilities",
"development-tools",
"network-programming",
]
license = "MIT"
repository = "https://github.com/mirkobozzetto/bunflared"
[[bin]]
name = "bunflared"
path = "src/main.rs"
[dependencies.bytes]
version = "1.12.1"
[dependencies.chrono]
version = "0.4.45"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.6.7"
features = ["derive"]
[dependencies.http-body-util]
version = "0.1.5"
[dependencies.hyper]
version = "1.11.1"
features = [
"http1",
"server",
"client",
]
[dependencies.hyper-util]
version = "0.1.21"
features = ["tokio"]
[dependencies.qrcode]
version = "0.14.1"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.regex]
version = "1.13.1"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[target."cfg(unix)".dependencies.libc]
version = "0.2.189"
[profile.dist]
lto = "thin"
inherits = "release"