Skip to content

Commit 6600ac0

Browse files
author
DogLooksGood
committed
Add replayer (wip)
1 parent 6a44563 commit 6600ac0

42 files changed

Lines changed: 851 additions & 219 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.config/direnv/direnvrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

Cargo.lock

Lines changed: 133 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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ members = [
1010
"cli",
1111
"storage",
1212
"encryptor",
13+
"event-record",
1314
"transport",
1415
"facade",
1516
"env",
1617
"client",
1718
"test",
1819
"local-db",
20+
"replayer",
1921
"examples/minimal",
2022
# "examples/draw-card",
2123
"examples/raffle",
@@ -32,6 +34,7 @@ race-proc-macro = { path = "proc-macro", version = ">=0.2.6" }
3234
race-core = { path = "core", version = ">=0.2.6" }
3335
race-client = { path = "client", version = ">=0.2.6" }
3436
race-encryptor = { path = "encryptor", version = ">=0.2.6" }
37+
race-event-record = { path = "event-record", version = ">=0.2.6" }
3538
race-test = { path = "test", version = ">=0.2.6" }
3639
race-env = { path = "env", version = "*" }
3740
race-transactor-components = { path = "transactor-components", version = "*" }
@@ -50,6 +53,7 @@ bcs = "0.1.6"
5053
chacha20 = "0.9.1"
5154
chrono = "0.4.24"
5255
clap = "4.0.26"
56+
crossterm = "0.25"
5357
ctr = "0.9.2"
5458
futures = "0.3.25"
5559
getrandom = "0.2"
@@ -98,6 +102,7 @@ tower-http = "0.4.4"
98102
tracing = "0.1.40"
99103
tracing-appender = "0.2.3"
100104
tracing-subscriber = "0.3.18"
105+
tui = "0.19"
101106
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
102107
wasmer = "4.4.0"
103108

0 commit comments

Comments
 (0)