quant1x 0.2.0

Cross-language standard library for quantitative trading
Documentation
[package]
name = "quant1x"
version = "0.2.0"
edition = "2021"
authors = ["Quant1X Team"]
description = "Cross-language standard library for quantitative trading"
license = "MIT"
readme = "README.md"

# Prefer an explicit include whitelist. This is more reliable than trying to
# exclude by extension because `cargo package` by default includes many
# repository files; a whitelist ensures only the crate-relevant files are
# packaged and uploaded to crates.io.
include = [
	"Cargo.toml",
	"README.md",
	"LICENSE",
	"quant1x/**/*.rs",
	"quant1x/*.rs",
	"examples/*.rs",
	"examples/**/*.rs",
	"tests/*.rs",
	"docs/README.md",
]

[lib]
name = "quant1x"
crate-type = ["cdylib", "rlib"]
path = "quant1x/lib.rs"

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
mio = { version = "0.8", features = ["net", "os-poll"] }
hex = "0.4"
encoding_rs = "0.8"
flate2 = "1.0"
once_cell = "1.18"
dirs = "4.0"
log = "0.4"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
filetime = "0.2"
httpdate = "1.0"
tempfile = "3"

[dev-dependencies]
mockito = "1.0"
# keep dependencies minimal for now; remove tokio/cron/uuid/futures that were
# temporarily added during an attempt to integrate tokio-cron-scheduler.