Fix rust feature activation (#20012)

This commit is contained in:
Brent Westbrook 2025-08-21 03:26:06 -04:00 committed by GitHub
parent d43a3d34dd
commit a5cbca156c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 3 deletions

View file

@ -51,7 +51,12 @@ insta = { workspace = true, features = ["redactions", "ron"] }
[features]
default = ["zstd"]
deflate = ["ty_vendored/deflate"]
schemars = ["dep:schemars", "ruff_db/schemars", "ty_python_semantic/schemars"]
schemars = [
"dep:schemars",
"ruff_db/schemars",
"ruff_python_ast/schemars",
"ty_python_semantic/schemars",
]
zstd = ["ty_vendored/zstd"]
format = ["ruff_python_formatter"]
testing = []