Skip to content
Draft
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
188 changes: 178 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions changelog.d/15.feature
1 change: 1 addition & 0 deletions changelog.d/19945.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add preliminary Rust-backed state res (v2.0) and auth chain processing.
4 changes: 4 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ futures = "0.3.31"
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread"] }
once_cell = "1.18.0"
itertools = "0.14.0"
# rezzy = "0.5.1"
# rezzy = { path = "../../rezzy" }
# rezzy = { git = "https://github.com/gamesguru/rezzy.git", rev = "50ac86688fb0e978daa3c233429faa8341662b4d" }
rezzy = { git = "https://github.com/gamesguru/rezzy.git", branch = "dev" }

[build-dependencies]
blake2 = "0.10.4"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/events/internal_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ impl EventInternalMetadata {
Ok(self.read_inner()?.need_to_check_redaction())
}

fn is_soft_failed(&self) -> PyResult<bool> {
pub fn is_soft_failed(&self) -> PyResult<bool> {
Ok(self.read_inner()?.is_soft_failed())
}

Expand Down
Loading