Skip to content
Open
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
255 changes: 240 additions & 15 deletions contract/Cargo.lock

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ soroban-sdk = { version = "22.0.0", features = ["testutils", "alloc"] }
# The real agents contract, so integration tests exercise the actual
# cross-contract call rather than a mock (#835).
lodestar-agents = { path = "agents", features = ["testutils"] }
# Property-based fuzzing of the reputation arithmetic (#833).
proptest = "1"

[profile.test]
# Debug builds already enable overflow checks; keep them on for proptests so
# any hidden overflow in the score arithmetic panics rather than wrapping.
overflow-checks = true
opt-level = 1

[profile.release]
opt-level = "z"
Expand Down
Loading