rec-cli 0.2.0

CLI Terminal Recorder - record, replay, and export terminal sessions
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"
rust-version = "1.85"
name = "rec-cli"
version = "0.2.0"
authors = ["Ahmet Zeybek"]
build = false
exclude = [
    ".github/",
    ".claude/",
    "tests/",
    "deny.toml",
    "rustfmt.toml",
    "rust-toolchain.toml",
    ".editorconfig",
    ".gitignore",
    "AGENTS.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI Terminal Recorder - record, replay, and export terminal sessions"
homepage = "https://github.com/zeybek/rec"
readme = "README.md"
keywords = [
    "terminal",
    "recording",
    "replay",
    "export",
    "cli",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/zeybek/rec"

[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/rec-cli-{ version }-{ target }{ archive-suffix }"
bin-dir = "rec-cli-{ version }-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"

[features]
default = []
tui = [
    "ratatui",
    "crossterm",
]

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

[[bin]]
name = "generate-completions"
path = "src/bin/generate-completions.rs"

[[bin]]
name = "rec"
path = "src/main.rs"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "serde",
    "std",
]
default-features = false

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.clap_complete]
version = "4.5"

[dependencies.crossterm]
version = "0.29"
optional = true

[dependencies.ctrlc]
version = "3.5"

[dependencies.dialoguer]
version = "0.12"

[dependencies.directories]
version = "6.0"

[dependencies.fd-lock]
version = "4.0"

[dependencies.glob]
version = "0.3"

[dependencies.ratatui]
version = "0.30"
features = ["crossterm"]
optional = true
default-features = false

[dependencies.regex]
version = "1.12"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.similar]
version = "2.7"

[dependencies.strsim]
version = "0.11"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.8"

[dependencies.toml_edit]
version = "0.22"

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "serde",
]

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.assert_fs]
version = "1.1"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.24"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"

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

[lints.rust]
unsafe_code = "deny"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true