[package]
edition = "2021"
rust-version = "1.85"
name = "tdbe"
version = "0.13.0"
authors = ["userFRM"]
build = "build.rs"
include = [
"src/**/*.rs",
"data/*.toml",
"build.rs",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ThetaData Binary Encoding -- market data types, FIT/FIE codecs, Black-Scholes Greeks"
homepage = "https://github.com/userFRM/ThetaDataDx"
documentation = "https://docs.rs/tdbe"
readme = "README.md"
keywords = [
"thetadata",
"encoding",
"market-data",
"codec",
"greeks",
]
categories = [
"encoding",
"finance",
]
license = "Apache-2.0"
repository = "https://github.com/userFRM/ThetaDataDx"
[lib]
name = "tdbe"
path = "src/lib.rs"
[dependencies.sonic-rs]
version = "0.5.8"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[build-dependencies.serde]
version = "1.0"
features = ["derive"]
[build-dependencies.toml]
version = "1.1"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
warnings = "deny"