50 lines
2.0 KiB
TOML
50 lines
2.0 KiB
TOML
[package]
|
|
name = "hexapoda"
|
|
# if run manually, CI will check for the string "ain" (lol), so here you go :)
|
|
version = "0.2.3"
|
|
description = "a colorful modal hex editor"
|
|
repository = "https://github.com/simonomi/hexapoda"
|
|
keywords = ["cli", "tui", "hex", "tool", "editor"]
|
|
categories = ["command-line-utilities"]
|
|
license = "GPL-3.0-only"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
crossterm = { version = "0.29.0", features = ["serde"] }
|
|
itertools = "0.14.0"
|
|
ratatui = "0.30.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
toml = "1.1.2"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
clap_complete = "4.6.3"
|
|
clap_complete_nushell = "4.6.0"
|
|
clap_mangen = "0.3.0"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "macos", target_arch = "aarch64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macOS-arm-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "macos", target_arch = "x86_64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macOS-intel-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "linux", target_arch = "x86_64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-x86_64-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "linux", target_arch = "aarch64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-arm-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "windows", target_arch = "x86_64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-Windows-x86_64-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "zip"
|
|
|
|
[package.metadata.binstall.overrides.'cfg(all(target_os = "windows", target_arch = "aarch64" ))']
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-Windows-arm-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "zip"
|