Skip to content

Tree rope #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [push]
on: [push, pull_request]

name: CI

Expand Down Expand Up @@ -51,7 +51,6 @@ jobs:
config:
- { os: ubuntu-latest, target: 'x86_64-unknown-linux-gnu' }
- { os: macos-latest, target: 'x86_64-apple-darwin' }
- { os: windows-latest, target: 'x86_64-pc-windows-msvc' }

steps:
- uses: actions/checkout@v2
Expand All @@ -74,7 +73,6 @@ jobs:
config:
- { os: ubuntu-latest, target: 'x86_64-unknown-linux-gnu' }
- { os: macos-latest, target: 'x86_64-apple-darwin' }
- { os: windows-latest, target: 'x86_64-pc-windows-msvc' }

steps:
- uses: actions/checkout@v2
Expand All @@ -97,7 +95,6 @@ jobs:
config:
- { os: ubuntu-latest, target: 'x86_64-unknown-linux-gnu' }
- { os: macos-latest, target: 'x86_64-apple-darwin' }
- { os: windows-latest, target: 'x86_64-pc-windows-msvc' }

steps:
- uses: actions/checkout@v2
Expand All @@ -120,7 +117,6 @@ jobs:
config:
- { os: ubuntu-latest, target: 'x86_64-unknown-linux-gnu' }
- { os: macos-latest, target: 'x86_64-apple-darwin' }
- { os: windows-latest, target: 'x86_64-pc-windows-msvc' }

steps:
- uses: actions/checkout@v2
Expand All @@ -142,7 +138,6 @@ jobs:
config:
- { os: ubuntu-latest, target: 'x86_64-unknown-linux-gnu' }
- { os: macos-latest, target: 'x86_64-apple-darwin' }
- { os: windows-latest, target: 'x86_64-pc-windows-msvc' }

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "structdiff"
version = "0.7.3"
version = "0.7.4"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/knickish/structdiff"
Expand All @@ -13,7 +13,7 @@ rust-version = "1.82.0"
nanoserde = { version = "^0.1.37", optional = true }
rustc-hash = { version = "1.1.0", optional = true }
serde = { version = "^1.0.0", optional = true, features = ["derive"] }
structdiff-derive = { path = "derive", version = "=0.7.3" }
structdiff-derive = { path = "derive", version = "=0.7.4" }

[features]
"default" = []
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
assert_unordered = "0.3.5"
structdiff = { path = "..", features = ["serde", "debug_diffs", "__rope_benchmarks"] }
structdiff = { path = "..", features = ["serde", "debug_diffs"] }
nanorand = { version = "0.7.0" }
diff-struct = { version = "0.5.3", optional = true}
serde = { version = "^1.0.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "structdiff-derive"
version = "0.7.3"
version = "0.7.4"
authors = ["Makepad <[email protected]>", "Fedor <[email protected]>", "Kirk <[email protected]"]
edition = "2021"
description = "derive macro library for structdiff"
Expand Down
213 changes: 93 additions & 120 deletions derive/src/difference.rs

Large diffs are not rendered by default.

Loading
Loading