[package]
edition.workspace = true
license.workspace = true
repository.workspace = true
name = "apple-quant-algorithmic"
description = "Apple Quant's algorithmic library."
version = "0.3.0"
readme = "README.md"
[lib]
crate-type = ["lib"]
[features]
default = [
"backend-databento",
"backend-simulated",
"tracing/release_max_level_off",
]
exposure-reversion = []
backend-databento = ["dep:databento"]
backend-simulated = []
log-trace-frontend = []
log-trace-order-actions = []
log-trace-order-manager = []
log-trace-directional-exposure = []
timestamp-u64 = []
points-i32 = []
subpoints-i32 = []
[dependencies]
apple-quant-core.workspace = true
tracing.workspace = true
tokio = { version = "1.52.3", features = ["full", "macros", "sync"] }
tokio-util = { version = "0.7.18", features = ["full", "time"] }
tokio-stream = "0.1.18"
clap = { version = "4.6.1", features = ["derive"] }
time = { version = "0.3.47", features = ["macros", "parsing", "formatting"] }
bincode = "2.0.1"
anyhow = "1.0.100"
thiserror = "2.0.17"
rust_decimal = { version = "1.41.0", features = ["macros"] }
smallvec = { version = "1.15.1", features = ["drain_filter"] }
arc-swap = "1.9.1"
num-traits = "0.2.19"
bitflag = "0.10.1"
ordered-float = "5.3.0"
zstd = "0.13.3"
smallstr = "0.3.1"
fixed = { version = "1.31.0", features = ["f16", "num-traits", "std"] }
rand = { version = "0.10.1", features = ["simd_support"] }
rand_distr = "0.6.0"
enum_dispatch = "0.3.13"
chrono = "0.4.45"
chrono-tz = { version = "0.10.4", features = ["case-insensitive"] }
toml = { version = "1.1.3" }
serde = "1.0.229"
thingbuf = "0.1.6"
databento = { version = "0.49.0", features = [
"historical",
"live",
], optional = true }