orcast 0.2.0

OHLCV-driven options ticker screener (Rust). Fetch daily bars; rank tickers per strategy category.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "orcast"
version = "0.2.0"
authors = ["Orcast Contributors"]
build = false
exclude = [
    "docs/**",
    "examples/**",
    "tests/**",
    "target/**",
    ".github/**",
    ".idea/**",
    ".vscode/**",
    "scripts/**",
    "images/**",
    "Cargo.lock",
    ".gitignore",
    "*.orig",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OHLCV-driven options ticker screener (Rust). Fetch daily bars; rank tickers per strategy category."
readme = "README.md"
keywords = [
    "ohlcv",
    "screener",
    "options",
    "rust",
]
categories = [
    "algorithms",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/rustic-ml/Orcast"

[lib]
name = "orcast"
path = "src/lib.rs"

[[bin]]
name = "orcast"
path = "src/main.rs"

[dependencies.reqwest]
version = "0.12"
features = [
    "rustls-tls",
    "json",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]

[dev-dependencies.httpmock]
version = "0.7"