Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ flume = "0.12"
cucumber = { version = "0.23", features = ["libtest"] }
proptest = "1.11"
rstest = "0.26"
# Typed error domains (card #113): thiserror for derived Display/Error (rule #3:
# no manual impls); downcast-rs to recover a concrete panic payload from the
# type-erased ReplyError trait object.
thiserror = "2.0"
downcast-rs = "2.0"
# Tier-2 (PTY) console E2E test only (card #83): drive the compiled binary through a
# pseudo-terminal and re-emulate the visible screen for grid assertions.
portable-pty = "0.9"
Expand Down
2 changes: 2 additions & 0 deletions bombay-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ publish = false
[dependencies]
tokio = { workspace = true, features = ["sync", "rt", "macros", "time"] }
flume = { workspace = true }
thiserror = { workspace = true }
downcast-rs = { workspace = true }

[dev-dependencies]
tokio = { workspace = true, features = [
Expand Down
Loading
Loading