diff --git a/crates/iota-genesis-builder/Cargo.toml b/crates/iota-genesis-builder/Cargo.toml index a1cf308a2b5..efe5fad1423 100644 --- a/crates/iota-genesis-builder/Cargo.toml +++ b/crates/iota-genesis-builder/Cargo.toml @@ -9,38 +9,32 @@ publish = false [dependencies] anyhow.workspace = true bcs.workspace = true +bigdecimal = "0.4.3" camino.workspace = true clap.workspace = true fastcrypto.workspace = true flate2.workspace = true +fs_extra = "1.3.0" +iota-sdk = { version = "1.1.4", default-features = false, features = ["irc_27", "irc_30", "std"] } itertools.workspace = true -move-binary-format.workspace = true -move-compiler.workspace = true -move-core-types.workspace = true -move-package.workspace = true -move-vm-runtime-v0 = { path = "../../external-crates/move/move-execution/v0/crates/move-vm-runtime" } +packable = { version = "0.8.3", default-features = false, features = ["io"] } +prefix-hex = "0.7.1" prometheus.workspace = true rand = { workspace = true, features = ["std_rng"] } -rand_regex.workspace = true +rand_pcg = "0.3.1" +rand_seeder = "0.2.3" regex.workspace = true reqwest.workspace = true +schemars.workspace = true serde.workspace = true serde_json.workspace = true serde_with.workspace = true serde_yaml.workspace = true +shared-crypto.workspace = true tempfile.workspace = true thiserror.workspace = true tokio.workspace = true tracing.workspace = true - -bigdecimal = "0.4.3" -fs_extra = "1.3.0" -iota-sdk = { version = "1.1.4", default-features = false, features = ["irc_27", "irc_30", "std"] } -packable = { version = "0.8.3", default-features = false, features = ["io"] } -prefix-hex = "0.7.1" - -rand_pcg = "0.3.1" -rand_seeder = "0.2.3" tracing-subscriber = "0.3.11" iota-adapter-v0 = { path = "../../iota-execution/v0/iota-adapter/" } @@ -52,13 +46,16 @@ iota-move-build.workspace = true iota-move-natives-v0 = { path = "../../iota-execution/v0/iota-move-natives" } iota-protocol-config.workspace = true iota-types.workspace = true -schemars.workspace = true -shared-crypto.workspace = true +move-binary-format.workspace = true +move-compiler.workspace = true +move-core-types.workspace = true +move-package.workspace = true +move-vm-runtime-v0 = { path = "../../external-crates/move/move-execution/v0/crates/move-vm-runtime" } + [target.'cfg(msim)'.dependencies] iota-simulator.workspace = true [dev-dependencies] -insta.workspace = true iota-swarm-config.workspace = true iota-types = { workspace = true, features = ["test-utils"] } tempfile.workspace = true