quickfix-tokio 0.2.0

A pure-Rust FIX protocol engine built natively on tokio
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "quickfix-tokio"
version = "0.2.0"
authors = ["Debdatta Basu <debdatta.basu91@gmail.com>"]
build = false
exclude = [
    "/reference",
    "/target",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust FIX protocol engine built natively on tokio"
homepage = "https://github.com/debdattabasu/quickfix-tokio"
documentation = "https://docs.rs/quickfix-tokio"
readme = "README.md"
keywords = [
    "fix",
    "quickfix",
    "trading",
    "protocol",
    "tokio",
]
categories = [
    "network-programming",
    "asynchronous",
    "finance",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/debdattabasu/quickfix-tokio"

[features]
decimal = ["dep:rust_decimal"]
default = [
    "fix44",
    "tls",
    "decimal",
]
fix44 = []
fix50 = []
fixt11 = []
tls = [
    "dep:tokio-rustls",
    "dep:rustls-pemfile",
]

[lib]
name = "quickfix_tokio"
path = "src/lib.rs"

[[bin]]
name = "generate-fix"
path = "src/bin/generate-fix.rs"

[[example]]
name = "auth_and_risk"
path = "examples/auth_and_risk.rs"

[[example]]
name = "events_client"
path = "examples/events_client.rs"

[[example]]
name = "events_executor"
path = "examples/events_executor.rs"

[[example]]
name = "executor"
path = "examples/executor.rs"

[[example]]
name = "market_data"
path = "examples/market_data.rs"

[[example]]
name = "order_client"
path = "examples/order_client.rs"

[[example]]
name = "streaming_client"
path = "examples/streaming_client.rs"

[[test]]
name = "acceptance"
path = "tests/acceptance.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "schedule"
path = "tests/schedule.rs"

[[test]]
name = "tls"
path = "tests/tls.rs"

[[test]]
name = "typed"
path = "tests/typed.rs"

[[test]]
name = "typed_v5"
path = "tests/typed_v5.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.quick-xml]
version = "0.37"

[dependencies.rust_decimal]
version = "1"
features = [
    "std",
    "macros",
]
optional = true
default-features = false

[dependencies.rustls-pemfile]
version = "2"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "io-util",
    "time",
    "sync",
    "rt",
    "macros",
    "fs",
]

[dependencies.tokio-rustls]
version = "0.26"
features = [
    "ring",
    "logging",
    "tls12",
]
optional = true
default-features = false

[dependencies.tracing]
version = "0.1"

[dev-dependencies.rcgen]
version = "0.13"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]

[dev-dependencies.tracing-subscriber]
version = "0.3"