Skip to content

Commit e80f4c4

Browse files
committed
feature(e2e): split out transacting check into a crate
1 parent b207ee1 commit e80f4c4

File tree

7 files changed

+49
-7
lines changed

7 files changed

+49
-7
lines changed

Cargo.lock

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

checks/migrator/checks/sketchpad/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,11 @@ rust-version = { workspace = true }
1212
mtma-migrator-types = { workspace = true }
1313
mtma-migrator-test-types = { workspace = true }
1414
anyhow = { workspace = true }
15-
mtma-migrator-test-transacting-criterion = { workspace = true }
1615
mtma-migrator-test-accounts-equal-criterion = { workspace = true }
1716
mtma-node-null-core = { workspace = true }
1817
tokio = { workspace = true }
19-
rand = { workspace = true }
2018
kestrel = { workspace = true }
2119
mtma-node-test-types = { workspace = true }
22-
aptos-sdk = { workspace = true }
2320

2421
[dev-dependencies]
2522
tracing-test = { workspace = true }
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
pub mod accounts_equal;
2-
pub mod transacting;
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[package]
2+
name = "mtma-migrator-transacting"
3+
version = { workspace = true }
4+
edition = { workspace = true }
5+
license = { workspace = true }
6+
authors = { workspace = true }
7+
homepage = { workspace = true }
8+
publish = { workspace = true }
9+
rust-version = { workspace = true }
10+
11+
[dependencies]
12+
mtma-migrator-types = { workspace = true }
13+
mtma-migrator-test-types = { workspace = true }
14+
anyhow = { workspace = true }
15+
aptos-sdk = { workspace = true }
16+
mtma-migrator-test-transacting-criterion = { workspace = true }
17+
mtma-node-null-core = { workspace = true }
18+
tokio = { workspace = true }
19+
kestrel = { workspace = true }
20+
mtma-node-test-types = { workspace = true }
21+
rand = { workspace = true }
22+
23+
[dev-dependencies]
24+
tracing-test = { workspace = true }
25+
tracing = { workspace = true }
26+
27+
[lints]
28+
workspace = true
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Migration Executor Checks Sketchpad
2+
A sketchpad for playing around with checks on the testpad.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod transacting;
File renamed without changes.

0 commit comments

Comments
 (0)