Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:

- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo clippy -p tui-test-rs --all-targets --no-default-features -- -D warnings
- run: cargo build
- run: cargo test --workspace -- --test-threads=1

Expand Down
99 changes: 99 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ crossterm = "0.28"
dialoguer = { version = "0.11", default-features = false }
dirs = "6.0.0"
flate2 = "1.1.9"
fontdb = { version = "0.23.0", default-features = false, features = ["fs", "std"] }
interprocess = "2.4.2"
portable-pty = "0.9.0"
regex = "1.12.4"
Expand All @@ -37,6 +38,7 @@ sha2 = "0.10.9"
toml = "0.9"
tui-test = { package = "tui-test-rs", path = "crates/tui-test" }
unicode-width = "0.2.2"
tiny-skia = { version = "0.11.4", default-features = false, features = ["std"] }
ttf-parser = { version = "0.25.1", default-features = false, features = ["std"] }

[profile.release]
Expand Down
6 changes: 6 additions & 0 deletions crates/tui-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,24 @@ readme = "../../README.md"
name = "tui_test"
path = "src/lib.rs"

[features]
default = []
recording-raster = ["dep:fontdb", "dep:tiny-skia"]

[dependencies]
alacritty_terminal.workspace = true
anyhow.workspace = true
bitflags.workspace = true
compact_str.workspace = true
dirs.workspace = true
flate2.workspace = true
fontdb = { workspace = true, optional = true }
portable-pty.workspace = true
regex.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
toml.workspace = true
tiny-skia = { workspace = true, optional = true }
ttf-parser.workspace = true
unicode-width.workspace = true
Loading