[package]
edition = "2024"
name = "warren"
version = "0.1.3"
authors = ["John Arundel <john@bitfieldconsulting.com>"]
build = false
exclude = ["/.github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A tool for value investors.
"""
homepage = "https://github.com/bitfield/warren"
documentation = "https://docs.rs/warren"
readme = "README.md"
keywords = [
"cli",
"finance",
"investment",
"stocks",
"trading",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitfield/warren"
[lib]
name = "warren"
path = "src/lib.rs"
[[bin]]
name = "warren"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1.0.97"
[dependencies.clap]
version = "4.5.31"
features = ["derive"]
[dependencies.reqwest]
version = "0.12.24"
[dependencies.tokio]
version = "1.43.0"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.yahoo_finance_api]
version = "3.0.0"