Files
proxy-scraper-checker/Cargo.toml
T
renovate[bot]GitHubrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
54ea2dfff3 fix(deps): update rust crate toml to v1.0.4 (#1067)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-04 22:51:04 +00:00

114 lines
2.9 KiB
TOML

[package]
name = "proxy-scraper-checker"
version = "0.1.0"
edition = "2024"
license = "MIT"
publish = false
[dependencies]
async-trait = "=0.1.89"
color-eyre = "=0.6.5"
compact_str = { version = "=0.9.0", features = ["serde"] }
crossterm = { version = "=0.29.0", default-features = false, features = [
"event-stream",
"windows",
], optional = true }
dhat = { version = "=0.3.3", optional = true }
dirs = "=6.0.0"
fancy-regex = "=0.17.0"
foldhash = "=0.2.0"
futures = { version = "=0.3.32", default-features = false, features = [
"std",
], optional = true }
hickory-resolver = "=0.25.2"
http = "=1.4.0"
httpdate = "=1.0.3"
ipnet = "=2.12.0"
itoa = "=1.0.17"
log = { version = "=0.4.29", features = [
"max_level_debug",
"release_max_level_debug",
"std",
] }
maxminddb = { version = "=0.27.3", features = ["mmap"] }
parking_lot = "=0.12.5"
rand = { version = "=0.10.0", default-features = false, features = [
"std",
"thread_rng",
] }
ratatui = { version = "=0.30.0", default-features = false, features = [
"crossterm",
"layout-cache",
], optional = true }
reqwest = { version = "=0.13.2", features = ["brotli", "gzip", "socks"] }
reqwest-middleware = "=0.5.1"
rlimit = "=0.11.0"
rustls = { version = "=0.23.37", default-features = false, features = [
"aws_lc_rs",
"prefer-post-quantum",
"std",
"tls12",
] }
rustls-platform-verifier = "=0.6.2"
serde = "=1.0.228"
serde_json = "=1.0.149"
smallvec = { version = "=1.15.1", features = [
"const_generics",
"union",
], optional = true }
strum = { version = "=0.28.0", features = ["derive"], optional = true }
tokio = { version = "=1.50.0", features = ["fs", "parking_lot", "signal"] }
tokio-util = "=0.7.18"
toml = { version = "=1.0.4", default-features = false, features = [
"parse",
"serde",
"std",
] }
tracing = { version = "=0.1.44", default-features = false, features = [
"max_level_debug",
"release_max_level_debug",
"std",
] }
tracing-subscriber = { version = "=0.3.22", features = ["parking_lot"] }
tui-logger = { version = "=0.18.1", features = [
"tracing-support",
], optional = true }
url = "=2.5.8"
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "x86_64"), any(target_os = "linux", target_os = "macos")))'.dependencies]
tikv-jemallocator = { version = "=0.6.1", optional = true }
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "x86_64"), any(target_os = "linux", target_os = "macos", target_os = "windows")))'.dependencies]
mimalloc = { version = "=0.1.48", optional = true }
[features]
dhat = ["dep:dhat"]
jemalloc = ["dep:tikv-jemallocator"]
mimalloc_v2 = ["dep:mimalloc"]
mimalloc_v3 = ["dep:mimalloc", "mimalloc/v3"]
tokio-multi-thread = []
tui = [
"dep:crossterm",
"dep:futures",
"dep:ratatui",
"dep:smallvec",
"dep:strum",
"dep:tui-logger",
]
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
[profile.dhat]
inherits = "release"
debug = true
strip = "none"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"
lto = "off"