Skip to content

Commit

Permalink
Fix demo-app building
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Oct 17, 2024
1 parent 273444c commit bb05d4b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
6 changes: 3 additions & 3 deletions rust/demo-app/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 rust/demo-app/crates/demo/src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub async fn display_events_loop() -> Result<(), anyhow::Error> {

let mut subscribe_all = sui
.event_api()
.subscribe_event(EventFilter::Package(package_id))
.subscribe_event(EventFilter::All([]))
.await?;

let ready_message =
Expand Down
24 changes: 12 additions & 12 deletions rust/demo-app/move/Move.lock
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# @generated by Move, please check-in and do not edit manually.

[move]
version = 1
version = 3
manifest_digest = "99A2707BE9E2291561C863B1EDEB5A85A208B564A99B37B6CD77EECD4B77ADD5"
deps_digest = "3C4103934B1E040BB6B23F1D610B4EF9F2F1166A50A104EADCF77467C004C600"
dependencies = [
{ name = "Log" },
{ name = "Sui" },
{ id = "Log", name = "Log" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
name = "Log"
id = "Log"
source = { local = "../../../../suibase/move/@suibase/log" }

dependencies = [
{ name = "Sui" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
name = "MoveStdlib"
id = "MoveStdlib"
source = { local = "../../../../suibase/workdirs/active/sui-repo/crates/sui-framework/packages/move-stdlib" }

[[move.package]]
name = "Sui"
id = "Sui"
source = { local = "../../../../suibase/workdirs/active/sui-repo/crates/sui-framework/packages/sui-framework" }

dependencies = [
{ name = "MoveStdlib" },
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[move.toolchain-version]
compiler-version = "1.30.1"
compiler-version = "1.35.1"
edition = "2024.beta"
flavor = "sui"

Expand All @@ -42,9 +42,9 @@ flavor = "sui"
test = 12

[env.localnet_proxy]
chain-id = "01a23034"
original-published-id = "0x6e90fc064ce669fb45c74103c0731ff786c2ffcce0c7b808a54cc8602caf29ba"
latest-published-id = "0x6e90fc064ce669fb45c74103c0731ff786c2ffcce0c7b808a54cc8602caf29ba"
chain-id = "0176b4d7"
original-published-id = "0xc0e2ec7dae3b473206545fdc0250296fc547efcdab94bcc0a31c0751bb4eb943"
latest-published-id = "0xc0e2ec7dae3b473206545fdc0250296fc547efcdab94bcc0a31c0751bb4eb943"
published-version = "1"

[env.testnet_proxy]
Expand Down
5 changes: 4 additions & 1 deletion rust/helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ thiserror = "1.0.40"

[dev-dependencies]
env_logger = "0.10"
log = "0.4"
log = "0.4"

[features]
build-with-uniffi = []

0 comments on commit bb05d4b

Please sign in to comment.