mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Needed for use in cloud Self-Review Checklist: - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [x] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Closes #ISSUE Release Notes: - N/A or Added/Fixed/Improved ...
27 lines
522 B
TOML
27 lines
522 B
TOML
[package]
|
|
name = "edit_prediction_metrics"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/edit_prediction_metrics.rs"
|
|
|
|
[features]
|
|
tree-sitter = ["dep:tree-sitter"]
|
|
|
|
[dependencies]
|
|
imara-diff.workspace = true
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
similar = "2.7.0"
|
|
tree-sitter = { workspace = true, optional = true }
|
|
zeta_prompt.workspace = true
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
pretty_assertions.workspace = true
|