redfolder 1.0.0

Async economic calendar client and automated trading blackout engine for algorithmic traders and prop firms
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 = "2021"
rust-version = "1.88"
name = "redfolder"
version = "1.0.0"
authors = ["0xbarss"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async economic calendar client and automated trading blackout engine for algorithmic traders and prop firms"
readme = "README.md"
keywords = [
    "trading",
    "forex",
    "economic-calendar",
    "blackout",
    "prop-firm",
]
categories = [
    "finance",
    "asynchronous",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/0xbarss/redfolder"

[features]
cli = [
    "dep:clap",
    "dep:colored",
]
default = ["cli"]

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

[[bin]]
name = "redfolder"
path = "src/bin/main.rs"
required-features = ["cli"]

[[example]]
name = "custom_listener"
path = "examples/custom_listener.rs"

[[example]]
name = "event_driven_bot"
path = "examples/event_driven_bot.rs"

[[example]]
name = "prop_firm_guard"
path = "examples/prop_firm_guard.rs"

[[example]]
name = "quickstart"
path = "examples/quickstart.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[bench]]
name = "blackout_benchmark"
path = "benches/blackout_benchmark.rs"
harness = false

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.chrono-tz]
version = "0.10"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.colored]
version = "2.1"
optional = true

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

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tempfile]
version = "3.10"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]