Skip to content
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: 7 additions & 0 deletions CHANGELOG.d/lineage-pair-criterion-project-journey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Added

- Add strict Rust wire producers for independent Event Lineage pair-criterion
posterior evidence and branching Project Journey posterior graphs. The
contracts preserve event-time uncertainty, record/event clock separation,
exact ties, multiple predecessors, TDT/CHRONOS provenance, and CPU/GPU
receipts; they never infer a fixed start or local fallback score.
174 changes: 173 additions & 1 deletion Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ members = [
"crates/topic_measurement",
"crates/psychometric_core",
"crates/orchestrator_live",
"crates/mlx_native_receipt",
]
default-members = [
"crates/evidence_core",
Expand Down Expand Up @@ -117,6 +118,7 @@ default-members = [
"crates/topic_measurement",
"crates/psychometric_core",
"crates/orchestrator_live",
"crates/mlx_native_receipt",
]

[workspace.package]
Expand Down Expand Up @@ -144,7 +146,7 @@ sqlx = { version = "=0.8.6", default-features = false, features = ["runtime-toki
rustls = { version = "=0.23.43", default-features = false, features = ["std", "tls12", "ring"] }

[workspace.lints.rust]
unsafe_code = "forbid"
unsafe_code = "deny"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Workspace unsafe_code weakened from forbid to deny

Cargo.toml relaxes the workspace unsafe_code lint from forbid to deny so the new MLX FFI binary can opt in with #![allow(unsafe_code)]. This weakens the guarantee across all crates. Library crates still keep crate-level #![forbid(unsafe_code)] and check_workspace_contract.py still enforces it, so exposure is limited to opt-in binaries.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

missing_docs = "deny"
warnings = "deny"
rust_2018_idioms = { level = "deny", priority = -1 }
Expand Down
1 change: 1 addition & 0 deletions crates/analysis_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ categories.workspace = true
publish = false

[dependencies]
event_core = { path = "../event_core", version = "0.2.0" }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
Expand Down
Loading
Loading