[package]
edition = "2024"
name = "rustyfinance"
version = "1.1.0"
authors = ["Henrik <228336177+k73a@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Download market data from Yahoo! Finance's API"
readme = "README.md"
keywords = [
"yahoo-finance",
"market-data",
"stock-data",
"financial-data",
"api",
]
categories = [
"api-bindings",
"finance",
]
license = "Apache-2.0"
repository = "https://github.com/k73a/rustyfinance"
[lib]
name = "rustyfinance"
path = "src/lib.rs"
[[bin]]
name = "rustyfinance"
path = "src/main.rs"
[[test]]
name = "consts_tests"
path = "tests/consts_tests.rs"
[[test]]
name = "domain_tests"
path = "tests/domain_tests.rs"
[[test]]
name = "multi_tests"
path = "tests/multi_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures-util]
version = "0.3"
[dependencies.once_cell]
version = "1.21"
[dependencies.prost]
version = "0.13"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tokio-tungstenite]
version = "0.24"
features = ["rustls-tls-native-roots"]
[dependencies.tungstenite]
version = "0.24"
features = ["rustls-tls-native-roots"]