testty 0.9.2

Rust-native TUI end-to-end testing framework using PTY-driven semantic assertions, native frame rendering, and VHS-driven GIF capture.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "testty"
version = "0.9.2"
authors = [
    "Vladimir Minev <minev.dev@gmail.com>",
    "Andrei Agaev <andagaev@gmail.com>",
]
build = false
include = [
    "src/**/*",
    "examples/**/*",
    "Cargo.toml",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-native TUI end-to-end testing framework using PTY-driven semantic assertions, native frame rendering, and VHS-driven GIF capture."
homepage = "https://github.com/agentty-xyz/agentty"
readme = "README.md"
keywords = [
    "tui",
    "testing",
    "e2e",
    "pty",
    "ratatui",
]
categories = [
    "development-tools::testing",
    "command-line-interface",
]
license = "Apache-2.0"
repository = "https://github.com/agentty-xyz/agentty"
resolver = "2"

[lib]
name = "testty"
path = "src/lib.rs"

[[example]]
name = "frame_diffing"
path = "examples/frame_diffing.rs"

[[example]]
name = "journey_composition"
path = "examples/journey_composition.rs"

[[example]]
name = "proof_pipeline"
path = "examples/proof_pipeline.rs"

[dependencies.base64]
version = "0.22"

[dependencies.image]
version = "0.25"
features = [
    "png",
    "gif",
]
default-features = false

[dependencies.portable-pty]
version = "0.9"

[dependencies.tempfile]
version = "3.27"

[dependencies.thiserror]
version = "2"

[dependencies.unicode-width]
version = "0.2"

[dependencies.vt100]
version = "0.16"

[lints.clippy]
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
exit = "warn"
expect_used = "warn"
get_unwrap = "warn"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
todo = "warn"
unimplemented = "warn"
unused_async = "warn"
unused_peekable = "warn"
unwrap_used = "warn"

[lints.clippy.pedantic]
level = "warn"
priority = -2

[lints.rust]
dead_code = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"