Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into pab/fix/b1-audit-refa…
Browse files Browse the repository at this point in the history
…ctor
  • Loading branch information
pbeza committed Feb 19, 2025
2 parents e16ec37 + 318a3f7 commit 972150d
Show file tree
Hide file tree
Showing 30 changed files with 803 additions and 111 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion libs/chain-signatures/Cargo.lock

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

8 changes: 8 additions & 0 deletions libs/chain-signatures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ members = [
]
resolver = "2"

[profile.release]
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
opt-level="s"


[patch.crates-io]
# TODO: trigger Cargo.lock update for x25519-dalek once they release.
# This fixes https://rustsec.org/advisories/RUSTSEC-2024-0344 by pointing to a commit that includes the fix.
Expand Down
Binary file modified libs/chain-signatures/compiled-contracts/v1.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion libs/chain-signatures/contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mpc-contract"
version = "1.0.0-rc.5"
version = "1.0.0"
edition = "2021"

[lib]
Expand Down
6 changes: 2 additions & 4 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mpc-node"
version = "0.1.0"
version = "1.0.0"
edition = "2021"

[dependencies]
Expand Down Expand Up @@ -44,16 +44,14 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2"
x509-parser = "0.16.0"

# TODO(#82): temporary: rev 88ec6c83b10e687474316517279f5bab76698db5: includes indexer fixes for single shard tracking.
# Move on to 2.5.0 when the release is cut.
near-indexer = { git = "https://github.com/near/nearcore", rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-indexer-primitives = { git = "https://github.com/near/nearcore",rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-client = { git = "https://github.com/near/nearcore",rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-config-utils = { git = "https://github.com/near/nearcore",rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-crypto = { git = "https://github.com/near/nearcore", rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-o11y = { git = "https://github.com/near/nearcore", rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }
near-time = { git = "https://github.com/near/nearcore", rev = "39882d8d34281fae2e5551c000eeeede2e75f8da" }

# todo: update once 1.1.0 is pulbished (though the api did not change)
mpc-contract = { git = "https://github.com/near/mpc/", tag = "1.0.0-rc.5" }

[dev-dependencies]
Expand Down
Loading

0 comments on commit 972150d

Please sign in to comment.