aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-12-27 12:19:19 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-12-27 12:19:19 +0000
commite422c2e2f4117cf977d28a40a9c8e4dc4cfee811 (patch)
tree9ea1dc365e420c286834b40923deb95a0ca291b9 /crates/ra_text_edit/Cargo.toml
parent55ab0c602e391537f5e1a84a617fdd817e6a4200 (diff)
parent1cda43aafd623b400f5916b1d3727b56c136081b (diff)
Merge #325
325: implement translate_offset_with_edit r=matklad a=vemoo - Implement `translate_offset_with_edit` to resolve #105 - Add proptest impls for text, offsets and edits and use them in tests for `translate_offset_with_edit` and `LineIndex` - Added benchmark for `translate_offset_with_edit` Co-authored-by: Bernardo <[email protected]>
Diffstat (limited to 'crates/ra_text_edit/Cargo.toml')
-rw-r--r--crates/ra_text_edit/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_text_edit/Cargo.toml b/crates/ra_text_edit/Cargo.toml
index 3c4157a4e..e0db49688 100644
--- a/crates/ra_text_edit/Cargo.toml
+++ b/crates/ra_text_edit/Cargo.toml
@@ -7,6 +7,7 @@ publish = false
7 7
8[dependencies] 8[dependencies]
9text_unit = "0.1.5" 9text_unit = "0.1.5"
10proptest = "0.8.7"
10 11
11[dev-dependencies] 12[dev-dependencies]
12test_utils = { path = "../test_utils" } 13test_utils = { path = "../test_utils" }