Cargo.lock 🔗
@@ -14311,8 +14311,6 @@ dependencies = [
"log",
"rand 0.9.2",
"rayon",
- "regex",
- "smallvec",
"sum_tree",
"unicode-segmentation",
"util",
Julia Ryan created
Cargo.lock | 2 --
crates/rope/Cargo.toml | 2 --
crates/rope/src/rope.rs | 2 --
3 files changed, 6 deletions(-)
@@ -14311,8 +14311,6 @@ dependencies = [
"log",
"rand 0.9.2",
"rayon",
- "regex",
- "smallvec",
"sum_tree",
"unicode-segmentation",
"util",
@@ -15,8 +15,6 @@ path = "src/rope.rs"
arrayvec = "0.7.1"
log.workspace = true
rayon.workspace = true
-regex.workspace = true
-smallvec.workspace = true
sum_tree.workspace = true
unicode-segmentation.workspace = true
util.workspace = true
@@ -6,8 +6,6 @@ mod unclipped;
use arrayvec::ArrayVec;
use rayon::iter::{IntoParallelIterator, ParallelIterator as _};
-use regex::Regex;
-use smallvec::SmallVec;
use std::{
cmp, fmt, io, mem,
ops::{self, AddAssign, Range},