[package]
edition = "2021"
rust-version = "1.85"
name = "mars-terminal"
version = "0.6.0"
authors = ["Anjishnu Kumar <anjishnu.kr@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"src/prompts/*.md",
"src/**/*.json",
"src/syntaxes/*.sublime-syntax",
"/Cargo.toml",
"/README.md",
"/LICENSE",
"/CHANGELOG.md",
"/install.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal editor, multiplexer, and built-in AI agent in one binary — non-modal and Emacs-compatible, with tmux-style persistent sessions."
homepage = "https://github.com/anjishnu/mars"
readme = "README.md"
keywords = [
"cli",
"ai",
"llm",
"terminal",
"tui",
]
categories = [
"command-line-utilities",
"text-editors",
]
license = "MIT"
repository = "https://github.com/anjishnu/mars"
[features]
default = [
"memory",
"ssh",
"syntax",
]
memory = []
ssh = []
syntax = ["dep:syntect"]
[[bin]]
name = "mars"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arboard]
version = "3"
[dependencies.base64]
version = "0.22"
[dependencies.crossterm]
version = "0.28"
features = [
"bracketed-paste",
"serde",
]
[dependencies.portable-pty]
version = "0.8"
[dependencies.ratatui]
version = "0.29"
[dependencies.ropey]
version = "1.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syntect]
version = "5"
features = ["default-fancy"]
optional = true
default-features = false
[dependencies.termimad]
version = "0.35"
[dependencies.ureq]
version = "2"
features = ["json"]
[dependencies.vt100]
version = "0.15"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.getrandom]
version = "0.2"
[target."cfg(windows)".dependencies.hmac]
version = "0.12"
[target."cfg(windows)".dependencies.sha2]
version = "0.10"
[profile.dev.package.vt100]
overflow-checks = false