mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-15 07:36:50 +03:00
Carry native comp capture and completion integrity fixes into the reviewed component workflow. Bump the skill to 4.4.0 and engine/platform pins to 0.1.6; keep publication separate from this release candidate. AI assistance: implemented and validated with OpenAI Codex.
29 lines
840 B
TOML
29 lines
840 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-comp = { 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"] }
|
|
rustls-native-certs = "0.8"
|
|
webpki-roots = "1"
|
|
tiny_http = "0.12"
|
|
unicode-normalization = "0.1.25"
|