[package]
edition = "2021"
rust-version = "1.86"
name = "stonktop"
version = "0.3.0"
authors = ["Thomas Vincent <thomasvincent@gmail.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A top-like terminal UI for monitoring stock and cryptocurrency prices"
homepage = "https://github.com/thomasvincent/stonktop"
documentation = "https://docs.rs/stonktop"
readme = "README.md"
keywords = [
"stocks",
"cryptocurrency",
"terminal",
"tui",
"finance",
]
categories = [
"command-line-utilities",
"finance",
]
license = "MIT"
repository = "https://github.com/thomasvincent/stonktop"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/stonktop-{ target }.tar.gz"
bin-dir = "stonktop-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "stonktop"
path = "src/lib.rs"
[[bin]]
name = "stonktop"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6.0"
[dependencies.futures]
version = "0.3"
[dependencies.humantime]
version = "2.1"
[dependencies.num-format]
version = "0.4"
[dependencies.ratatui]
version = "0.30"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.toml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.release-with-debug]
debug = 2
inherits = "release"
strip = false