Files
pbakaus_impeccable/crates/context/Cargo.toml
T
Abdul WahabandCursor cb2a9af35b Fix: honor proxy environment variables in native downloads (#823)
The shared ureq agent now reads HTTP_PROXY/HTTPS_PROXY/ALL_PROXY so update and install work behind a corporate proxy. SOCKS is compiled in because ureq prefers ALL_PROXY, which is often socks5.

AI assistance disclosure: this commit was prepared with AI assistance under maintainer direction.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-16 14:18:04 +05:00

28 lines
816 B
TOML

[package]
name = "impeccable-context"
edition.workspace = true
version.workspace = true
license.workspace = true
publish.workspace = true
[features]
default = []
# Use impeccable_core::registry::ANTIPATTERNS for doctor's known rule ids
# instead of the embedded snapshot in src/rule_ids.rs.
core-registry = []
[dependencies]
impeccable-common = { workspace = true }
impeccable-core = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
regex = { workspace = true }
once_cell = { workspace = true }
sha2 = "0.10"
flate2 = { version = "1", default-features = false, features = ["zlib-rs"] }
ureq = { version = "2", default-features = false, features = ["tls", "json", "socks-proxy"] }
rustls-native-certs = "0.8"
webpki-roots = "1"
tiny_http = "0.12"
unicode-normalization = "0.1.25"