Skip to content

Commit 8d5c2eb

Browse files
committed
chore: fix movement-core-util for the nth time.
1 parent 694fc7e commit 8d5c2eb

File tree

8 files changed

+20
-15
lines changed

8 files changed

+20
-15
lines changed

Cargo.lock

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ movement-client = { git = "https://github.com/movementlabsxyz/movement.git", rev
104104
syncador = { git = "https://github.com/movementlabsxyz/movement.git", rev = "aa1ffed1a113441a65662792d15682ad52406108" }
105105
movement-types = { git = "https://github.com/movementlabsxyz/movement.git", rev = "aa1ffed1a113441a65662792d15682ad52406108" }
106106
maptos-execution-util = { git = "https://github.com/movementlabsxyz/movement.git", rev = "aa1ffed1a113441a65662792d15682ad52406108" }
107+
movement-util = { git = "https://github.com/movementlabsxyz/movement.git", rev = "aa1ffed1a113441a65662792d15682ad52406108" }
107108

108109
# aptos-core
109110
aptos-executor = { git = "https://github.com/movementlabsxyz/aptos-core.git", rev = "cb3b7b02f68c7d6982257e4c59955d0e63b513db" }
@@ -182,7 +183,7 @@ mtma-migrator-test-types = { path = "checks/migrator/util/types" }
182183
## util
183184
movement-syncing = { path = "util/movement/movement-syncing" }
184185
movement-core = { path = "util/movement/movement-core" }
185-
movement-util = { path = "util/movement/movement-util" }
186+
movement-core-util = { path = "util/movement/movement-util" }
186187
movement-aptos = { path = "util/movement-aptos/movement-aptos" }
187188
movement-aptos-core = { path = "util/movement-aptos/movement-aptos-core" }
188189

migration/util/node-types/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ tracing = { workspace = true }
2323
movement-aptos-core = { workspace = true }
2424
futures-channel = { workspace = true }
2525
tokio = { workspace = true }
26-
# todo: get rid of namespace conflict
27-
movement-util = { git = "https://github.com/movementlabsxyz/movement.git", rev = "aa1ffed1a113441a65662792d15682ad52406108" }
26+
movement-util = { workspace = true }
2827

2928
[lints]
3029
workspace = true

util/movement/movement-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ kestrel = { workspace = true }
2626
strip-ansi-escapes = { workspace = true }
2727
regex = { workspace = true }
2828
reqwest = { workspace = true }
29-
movement-util = { workspace = true }
29+
movement-core-util = { workspace = true }
3030

3131
[build-dependencies]
3232
include-vendor = { workspace = true }
3333
cargo_metadata = { workspace = true }
3434
ready-docker = { workspace = true }
35-
movement-util = { workspace = true }
35+
movement-core-util = { workspace = true }
3636
tokio = { workspace = true }
3737

3838
[lints]

util/movement/movement-core/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use include_vendor::{Buildtime, BuildtimeError, Noop};
2-
use movement_util::CONTAINERS;
2+
use movement_core_util::CONTAINERS;
33

44
#[tokio::main]
55
async fn main() -> Result<(), BuildtimeError> {

util/movement/movement-core/src/movement.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ impl Movement {
214214
/// Runs the movement with the given overlays.
215215
pub async fn run(&self) -> Result<(), MovementError> {
216216
// set the CONTAINER_REV environment variable
217-
std::env::set_var("CONTAINER_REV", movement_util::CONTAINER_REV);
217+
std::env::set_var("CONTAINER_REV", movement_core_util::CONTAINER_REV);
218218

219219
let overlays = self.overlays.to_overlay_args();
220220

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "movement-util"
2+
name = "movement-core-util"
33
version = { workspace = true }
44
edition = { workspace = true }
55
license = { workspace = true }
@@ -9,7 +9,7 @@ publish = { workspace = true }
99
rust-version = { workspace = true }
1010

1111
[dependencies]
12-
12+
movement-util = { workspace = true }
1313

1414
[lints]
1515
workspace = true

util/movement/movement-util/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
pub use movement_util::*;
2+
13
pub const CONTAINER_REPO: &str = "ghcr.io/movementlabsxyz";
24
pub const CONTAINER_REV: &str = "c2372ff";
35

0 commit comments

Comments
 (0)