[package]
edition = "2021"
name = "rsview"
version = "0.2.0"
authors = ["Dat Vo <datvogpt@gmail.com>"]
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Browse, navigate and search multi-GB JSON in the terminal at near-constant memory (mmap + lazy byte-range parsing)"
homepage = "https://github.com/vothanhdat/rsview"
readme = "README.md"
keywords = [
"json",
"tui",
"viewer",
"mmap",
"ratatui",
]
categories = [
"command-line-utilities",
"visualization",
]
license = "MIT"
repository = "https://github.com/vothanhdat/rsview"
[[bin]]
name = "rsview"
path = "src/main.rs"
[dependencies.memmap2]
version = "0.9"
[dependencies.ratatui]
version = "0.29"
[profile.release]
opt-level = 3
lto = true