quant1x 0.7.5

Cross-language standard library for quantitative trading
Documentation
[package]
name = "quant1x"
version = "0.7.5"
edition = "2021"
authors = ["Quant1X Team"]
description = "Cross-language standard library for quantitative trading"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/quant1x/quant1x"
repository = "https://gitee.com/quant1x/quant1x"
documentation = "https://gitee.com/quant1x/quant1x"


# Use `exclude` only. Having both `include` and `exclude` causes Cargo to
# ignore `exclude`, which is why vcpkg_installed/ ended up in the publish
# list previously. Ensure vcpkg_installed is excluded so those license files
# won't be packaged.
exclude = [
    "third_party/**",
    "vcpkg_installed/**",
]

[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"
zip = "0.6"
once_cell = "1.18"
dirs = "4.0"
log = "0.4"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls", "json"] }
filetime = "0.2"
httpdate = "1.0"
tempfile = "3"
clap = { version = "4.4", features = ["derive"] }
indicatif = "0.17"
log4rs = "1.3"
env_logger = "0.10"
csv = "1.2"
mimalloc = "0.1"
unicode-normalization = "0.1"
strsim = "0.10"
tokio = { version = "1.0", features = ["full"] }
cron = "0.12"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["shellapi", "processthreadsapi", "winbase", "handleapi", "minwinbase", "synchapi", "errhandlingapi", "winuser", "winnls", "stringapiset"] }
named_pipe = "0.4"
windows = { version = "0.48", features = ["Win32_Foundation", "Win32_System_Pipes", "Win32_System_Threading", "Win32_System_IO"] }

[dev-dependencies]
mockito = "1.0"
# Criterion for benchmarking
criterion = "0.4"
# keep dependencies minimal for now; remove tokio/cron/uuid/futures that were
# temporarily added during an attempt to integrate tokio-cron-scheduler.
bytes = "1.5"
signal-hook = "0.3"
ctrlc = "3.4"
tokio-cron-scheduler = "0.9"
serde_repr = "0.1.20"

[[bin]]
name = "q1x"
path = "main.rs"

[[bin]]
name = "vyukov_perf"
path = "tools/vyukov_perf.rs"

[[bin]]
name = "vyukov_runner"
path = "tools/vyukov_runner.rs"


[features]
# Feature gate to enable vyukov tests/impl
vyukov = []