Skip to content

Commit 2ae2ebe

Browse files
committed
chor: preliminary integration.
1 parent c471db4 commit 2ae2ebe

24 files changed

Lines changed: 731 additions & 38 deletions

File tree

Cargo.lock

Lines changed: 199 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ members = [
1616
# e2e
1717
"checks/e2e/util/*",
1818
"checks/e2e/citeria/*",
19+
"checks/e2e/checks/*",
1920
# util
2021
"util/movement/*",
2122
"util/movement-aptos/*",
@@ -39,6 +40,7 @@ async-trait = "0.1.71"
3940
clap = { version = "4.4.10", features = ["derive"] }
4041
dotenv = "0.15.0"
4142
futures = "0.3.17"
43+
futures-channel = "0.3.17"
4244
serde = "1.0"
4345
serde_json = "1.0.140"
4446
serde_derive = "1.0"
@@ -157,7 +159,7 @@ migration-executor-preludes = { path = "checks/executor/preludes" }
157159

158160
### util
159161
migration-executor-types = { path = "migration/util/executor-types" }
160-
162+
migration-e2e-types = { path = "migration/util/e2e-types" }
161163
## checks
162164
### executor
163165
migration-executor-test-types = { path = "checks/executor/util/types" }
@@ -173,6 +175,7 @@ migration-e2e-test-types = { path = "checks/e2e/util/types" }
173175
movement-syncing = { path = "util/movement/movement-syncing" }
174176
movement-core = { path = "util/movement/movement-core" }
175177
movement-util = { path = "util/movement/movement-util" }
178+
movement-aptos-core = { path = "util/movement-aptos/movement-aptos-core" }
176179

177180
[workspace.lints.clippy]
178181
debug_assert_with_mut_call = "deny"
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[package]
2+
name = "migration-e2e-checks-sketchpad"
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+
migration-e2e-types = { workspace = true }
13+
migration-e2e-test-types = { workspace = true }
14+
anyhow = { workspace = true }
15+
mtma-null-core = { workspace = true }
16+
tokio = { workspace = true }
17+
chrono = { workspace = true }
18+
rand = { workspace = true }
19+
kestrel = { workspace = true }
20+
migration-executor-preludes = { workspace = true }
21+
migration-executor-test-types = { 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.

0 commit comments

Comments
 (0)