[package]
edition = "2021"
rust-version = "1.75"
name = "fin-stream"
version = "2.4.2"
authors = ["Matt Busel <matt@busel.dev>"]
build = false
include = [
"src/**/*",
"benches/**/*",
"tests/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time market data streaming primitives — 100K+ ticks/second ingestion pipeline"
homepage = "https://github.com/Mattbusel/fin-stream"
documentation = "https://docs.rs/fin-stream"
readme = "README.md"
keywords = [
"finance",
"streaming",
"market-data",
"high-performance",
"trading",
]
categories = [
"finance",
"asynchronous",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Mattbusel/fin-stream"
[lib]
name = "fin_stream"
path = "src/lib.rs"
[[test]]
name = "api_coverage_stream"
path = "tests/api_coverage_stream.rs"
[[test]]
name = "book_stress"
path = "tests/book_stress.rs"
[[test]]
name = "extended"
path = "tests/extended.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "ohlcv_accuracy"
path = "tests/ohlcv_accuracy.rs"
[[test]]
name = "pipeline_tests"
path = "tests/pipeline_tests.rs"
[[test]]
name = "production_readiness"
path = "tests/production_readiness.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "ring_tests"
path = "tests/ring_tests.rs"
[[test]]
name = "targeted"
path = "tests/targeted.rs"
[[test]]
name = "tick_normalization"
path = "tests/tick_normalization.rs"
[[bench]]
name = "tick_hot_path"
path = "benches/tick_hot_path.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "5.5"
[dependencies.fin-primitives]
version = "2.0.0"
[dependencies.futures-util]
version = "0.3"
[dependencies.rust_decimal]
version = "1.35"
features = ["serde-with-str"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
features = ["native-tls"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"fast-rng",
"serde",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.rust_decimal_macros]
version = "1.35"
[dev-dependencies.tokio-test]
version = "0.4"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unwrap_used = "deny"
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "debuginfo"