Skip to content

Commit f4eeca9

Browse files
committed
change rope impl
1 parent 3a62e98 commit f4eeca9

File tree

7 files changed

+983
-870
lines changed

7 files changed

+983
-870
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "structdiff"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66
repository = "https://github.com/knickish/structdiff"
@@ -22,12 +22,12 @@ structdiff-derive = { path = "derive", version = "=0.7.1" }
2222
"generated_setters" = ["structdiff-derive/generated_setters"]
2323
"rustc_hash" = ["dep:rustc-hash"]
2424
"debug_asserts" = []
25-
"__rope_benchmarks" = []
2625

2726
[dev-dependencies]
2827
bincode = "1.3.3"
2928
assert_unordered = "0.3.5"
30-
nanorand = { version = "0.7.0" }
29+
nanorand = "0.7.0"
30+
pretty_assertions = "1.4.1"
3131

3232
[lints.rust]
33-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(unused)'] }
33+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(unused)'] }

benchmarks/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,3 @@ harness = false
3636
[[bench]]
3737
name = "large"
3838
harness = false
39-
40-
[[bench]]
41-
name = "rope"
42-
harness = false

benchmarks/benches/rope.rs

Lines changed: 0 additions & 182 deletions
This file was deleted.

src/collections/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
#[cfg(feature = "__rope_benchmarks")]
2-
pub mod rope;
3-
4-
#[cfg(not(feature = "__rope_benchmarks"))]
51
pub(crate) mod rope;
62

73
pub mod unordered_array_like;

0 commit comments

Comments
 (0)