[package]
edition = "2024"
rust-version = "1.88.0"
name = "fastlib"
version = "0.3.6"
authors = ["Alexey McSakoff <mcsakoff@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
FAST (FIX Adapted for STreaming protocol) is a space and processing efficient encoding method
for message oriented data streams.
"""
readme = "README.md"
keywords = [
"fix",
"fast",
"protocol",
"parser",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT"
repository = "https://github.com/mcsakoff/rs-fastlib"
[features]
default = ["serde"]
rust_decimal = ["dep:rust_decimal"]
serde = ["dep:serde"]
[lib]
name = "fastlib"
path = "src/lib.rs"
[[test]]
name = "cqg"
path = "tests/cqg.rs"
[[test]]
name = "cqg-serde"
path = "tests/cqg-serde.rs"
[dependencies.bytes]
version = "1"
[dependencies.hashbrown]
version = "0.16"
[dependencies.roxmltree]
version = "0.21"
[dependencies.rust_decimal]
version = "1"
optional = true
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_bytes]
version = "0.11"
[dev-dependencies.serde_derive]
version = "1.0"