tradier 0.1.2

This project involves the development of a Rust library for managing trades and market data using the Tradier broker API. The main objective is to provide an efficient and secure interface for executing trades, retrieving real-time quotes, managing portfolios, and accessing historical market data. The library focuses on leveraging Rust's performance and concurrency advantages, enabling integration into high-frequency trading applications and data-intensive financial processing.
Documentation
[dependencies.async-trait]
version = "0.1.89"

[dependencies.bon]
version = "3.0"

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

[dependencies.futures-util]
version = "0.3"

[dependencies.reqwest]
features = ["json"]
version = "0.12"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["full"]
version = "1.48"

[dependencies.tokio-tungstenite]
features = ["native-tls"]
version = "0.28"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.tungstenite]
features = ["native-tls"]
version = "0.28"

[dependencies.url]
version = "2.5"

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

[dev-dependencies.jsonschema]
version = "0.33"

[dev-dependencies.mockito]
version = "1.7"

[dev-dependencies.pretty_assertions]
features = ["unstable"]
version = "1.4"

[dev-dependencies.proptest]
version = "1.8"

[dev-dependencies.proptest-derive]
version = "0.7"

[dev-dependencies.serde_json]
version = "1.0"

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

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

[[example]]
name = "blocking_client"
path = "examples/blocking_client/main.rs"

[[example]]
name = "non_blocking_client"
path = "examples/non_blocking_client/main.rs"

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

[package]
authors = ["Joaquin Bejar <jb@taunais.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["finance", "data-structures"]
description = "This project involves the development of a Rust library for managing trades and market data using the Tradier broker API. The main objective is to provide an efficient and secure interface for executing trades, retrieving real-time quotes, managing portfolios, and accessing historical market data. The library focuses on leveraging Rust's performance and concurrency advantages, enabling integration into high-frequency trading applications and data-intensive financial processing."
edition = "2021"
homepage = "https://github.com/joaquinbejar/tradier"
include = ["src/**/*.rs", "Cargo.toml", "README.md", "LICENSE", "examples/**/*.rs", "tests/**/*.rs", "Makefile", "rust-toolchain.toml", "Draws/**/*.png", "Docker/**/*.Dockerfile", "Docker/**/*.yml"]
keywords = ["finance", "options", "trading"]
license = "MIT"
name = "tradier"
readme = "README.md"
repository = "https://github.com/joaquinbejar/tradier"
version = "0.1.2"

[[test]]
name = "tests"
path = "tests/unit/mod.rs"