mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-01 12:25:45 +00:00
This is still early days, but I hope the framework introduced here makes it very easy to add new truth data. Truth data should be seen as a form of regression test for non-ideal ranking of completion suggestions. I think it would help to read `crates/ty_completion_eval/README.md` first to get an idea of what you're reviewing.
32 lines
847 B
TOML
32 lines
847 B
TOML
[package]
|
|
name = "ty_completion_eval"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
ruff_db = { workspace = true, features = ["os"] }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
ty_ide = { workspace = true }
|
|
ty_project = { workspace = true }
|
|
ty_python_semantic = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
bstr = { workspace = true }
|
|
clap = { workspace = true, features = ["wrap_help", "string", "env"] }
|
|
csv = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
toml = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|