[package]
edition = "2021"
name = "fin-stream"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time market data streaming primitives — 100K+ ticks/second ingestion pipeline"
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 = "extended"
path = "tests/extended.rs"
[[test]]
name = "integration"
path = "tests/integration.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 = "0.1.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.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"