66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
[package]
|
|
name = "proxy-scraper-checker"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
cfg-if = "=1.0.0"
|
|
color-eyre = "=0.6.3"
|
|
crossterm = { version = "=0.28.1", features = [
|
|
"event-stream",
|
|
], optional = true }
|
|
derivative = "=2.2.0"
|
|
dirs = "=6.0.0"
|
|
env_logger = { version = "=0.11.8", optional = true }
|
|
fancy-regex = "=0.14.0"
|
|
futures = "=0.3.31"
|
|
log = "=0.4.27"
|
|
maxminddb = "=0.26.0"
|
|
ratatui = { version = "=0.29.0", optional = true }
|
|
rlimit = "=0.10.2"
|
|
serde = "=1.0.219"
|
|
serde_json = "=1.0.140"
|
|
tokio = { version = "=1.44.2", features = ["full"] }
|
|
toml = "=0.8.20"
|
|
tui-logger = { version = "=0.17.0", optional = true }
|
|
url = "=2.5.4"
|
|
|
|
[features]
|
|
default = []
|
|
logger = ["dep:env_logger"]
|
|
tui = ["dep:crossterm", "dep:ratatui", "dep:tui-logger"]
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
reqwest = { version = "=0.12.15", default-features = false, features = [
|
|
"brotli",
|
|
"charset",
|
|
"gzip",
|
|
"hickory-dns",
|
|
"http2",
|
|
"json",
|
|
"macos-system-configuration",
|
|
"rustls-tls",
|
|
"socks",
|
|
"stream",
|
|
] }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
reqwest = { version = "=0.12.15", default-features = false, features = [
|
|
"brotli",
|
|
"charset",
|
|
"gzip",
|
|
"http2",
|
|
"json",
|
|
"macos-system-configuration",
|
|
"rustls-tls",
|
|
"socks",
|
|
"stream",
|
|
] }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = "fat"
|
|
codegen-units = 1
|