[package]
edition = "2024"
name = "par-term"
version = "0.22.0"
authors = ["Paul Robello <probello@gmail.com>"]
build = "build.rs"
exclude = [
"*.sixel",
"images/",
"test_*.rs",
".github/",
".gitignore",
"CLAUDE.md",
"GEMINI.md",
"AGENTS.md",
"MATRIX.md",
"PANES.md",
"agents/",
"gh-pages/",
"shaders/textures/",
"assets/par-term.icns",
"docs/plans/",
".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "par-term"
description = "Cross-platform GPU-accelerated terminal emulator with inline graphics support (Sixel, iTerm2, Kitty)"
homepage = "https://github.com/paulrobello/par-term"
documentation = "https://github.com/paulrobello/par-term/blob/main/README.md"
readme = "README.md"
keywords = [
"terminal",
"emulator",
"tui",
"gpu",
"graphics",
]
categories = [
"command-line-utilities",
"gui",
]
license = "MIT"
repository = "https://github.com/paulrobello/par-term"
resolver = "2"
[features]
dev-tools = []
[lib]
name = "par_term"
path = "src/lib.rs"
[[bin]]
name = "par-term"
path = "src/main.rs"
[[bin]]
name = "par-term-acp-harness"
path = "src/bin/par-term-acp-harness.rs"
[[test]]
name = "activity_notification_tests"
path = "tests/activity_notification_tests.rs"
[[test]]
name = "automation_config_tests"
path = "tests/automation_config_tests.rs"
[[test]]
name = "block_chars_tests"
path = "tests/block_chars_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "grapheme_rendering_tests"
path = "tests/grapheme_rendering_tests.rs"
[[test]]
name = "import_export_tests"
path = "tests/import_export_tests.rs"
[[test]]
name = "input_tests"
path = "tests/input_tests.rs"
[[test]]
name = "profile_ui_tests"
path = "tests/profile_ui_tests.rs"
[[test]]
name = "script_integration_tests"
path = "tests/script_integration_tests.rs"
[[test]]
name = "script_manager_tests"
path = "tests/script_manager_tests.rs"
[[test]]
name = "script_observer_tests"
path = "tests/script_observer_tests.rs"
[[test]]
name = "script_process_tests"
path = "tests/script_process_tests.rs"
[[test]]
name = "script_protocol_tests"
path = "tests/script_protocol_tests.rs"
[[test]]
name = "scripting_config_tests"
path = "tests/scripting_config_tests.rs"
[[test]]
name = "session_notification_tests"
path = "tests/session_notification_tests.rs"
[[test]]
name = "settings_window_tests"
path = "tests/settings_window_tests.rs"
[[test]]
name = "shader_context_tests"
path = "tests/shader_context_tests.rs"
[[test]]
name = "shader_watcher_tests"
path = "tests/shader_watcher_tests.rs"
[[test]]
name = "shell_env_tests"
path = "tests/shell_env_tests.rs"
[[test]]
name = "snippets_actions_tests"
path = "tests/snippets_actions_tests.rs"
[[test]]
name = "ssh_integration"
path = "tests/ssh_integration.rs"
[[test]]
name = "status_bar_config_test"
path = "tests/status_bar_config_test.rs"
[[test]]
name = "tab_bar_ui_tests"
path = "tests/tab_bar_ui_tests.rs"
[[test]]
name = "tab_color_tests"
path = "tests/tab_color_tests.rs"
[[test]]
name = "tab_stability_tests"
path = "tests/tab_stability_tests.rs"
[[test]]
name = "terminal_tests"
path = "tests/terminal_tests.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.arboard]
version = "3.6.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.bytemuck]
version = "1.25"
features = ["derive"]
[dependencies.chrono]
version = "0.4.43"
[dependencies.clap]
version = "4.5.59"
features = ["derive"]
[dependencies.dirs]
version = "6.0"
[dependencies.egui]
version = "0.33.3"
[dependencies.egui-wgpu]
version = "0.33.3"
[dependencies.egui-winit]
version = "0.33.3"
[dependencies.flate2]
version = "1.1.9"
[dependencies.fontdb]
version = "0.23"
[dependencies.fuzzy-matcher]
version = "0.3.7"
[dependencies.half]
version = "2.7.1"
[dependencies.hostname]
version = "0.4.2"
[dependencies.image]
version = "0.25.9"
[dependencies.libc]
version = "0.2.182"
[dependencies.log]
version = "0.4.29"
[dependencies.lru]
version = "0.16.3"
[dependencies.mdns-sd]
version = "0.18"
[dependencies.muda]
version = "0.17.1"
[dependencies.naga]
version = "27"
features = [
"glsl-in",
"wgsl-out",
]
[dependencies.native-tls]
version = "=0.2.16"
[dependencies.notify-rust]
version = "4.12"
[dependencies.open]
version = "5.3.3"
[dependencies.par-term-acp]
version = "0.2.0"
[dependencies.par-term-config]
version = "0.5.0"
features = [
"watcher",
"wgpu-types",
]
[dependencies.par-term-emu-core-rust]
version = "0.39.2"
features = ["rust-only"]
default-features = false
[dependencies.par-term-fonts]
version = "0.1.4"
[dependencies.par-term-input]
version = "0.1.4"
[dependencies.par-term-keybindings]
version = "0.1.4"
[dependencies.par-term-mcp]
version = "0.2.0"
[dependencies.par-term-render]
version = "0.4.1"
[dependencies.par-term-scripting]
version = "0.1.4"
[dependencies.par-term-settings-ui]
version = "0.5.0"
[dependencies.par-term-ssh]
version = "0.1.1"
[dependencies.par-term-terminal]
version = "0.1.4"
[dependencies.par-term-tmux]
version = "0.1.4"
[dependencies.par-term-update]
version = "0.2.1"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.regex]
version = "1.12.3"
[dependencies.rfd]
version = "0.17.2"
[dependencies.rodio]
version = "0.21.1"
[dependencies.rustybuzz]
version = "0.20.1"
[dependencies.semver]
version = "1.0.27"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10.9"
[dependencies.swash]
version = "0.2.6"
[dependencies.sysinfo]
version = "0.37.2"
[dependencies.tar]
version = "0.4.44"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.unicode-segmentation]
version = "1.12"
[dependencies.ureq]
version = "3.2.0"
features = [
"native-tls",
"gzip",
]
default-features = false
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"serde",
]
[dependencies.wgpu]
version = "27"
features = ["wgsl"]
[dependencies.winit]
version = "0.30"
[dependencies.zip]
version = "8.1.0"
[dev-dependencies.tempfile]
version = "3.25"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies.muda]
version = "0.17.1"
features = ["gtk"]
[target.'cfg(not(target_os = "macos"))'.dependencies.notify]
version = "8.2"
[target.'cfg(target_os = "macos")'.dependencies.notify]
version = "8.2"
features = ["macos_kqueue"]
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.3"
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-quartz-core]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.raw-window-handle]
version = "0.6.2"
[target.'cfg(target_os = "windows")'.build-dependencies.winres]
version = "0.1"
[profile.dev]
opt-level = 0
debug = 2
[profile.dev-release]
lto = "thin"
codegen-units = 16
inherits = "release"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true