[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-fix"
version = "0.10.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FIX session-layer for atomr — logon/heartbeat/sequence/resend/gap-fill session FSM over atomr-streams Tcp + Framing, with a pluggable persistent sequence store."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-fix"
readme = "README.md"
keywords = [
"actor",
"fix",
"trading",
"session",
"protocol",
]
categories = [
"network-programming",
"finance",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["fix44"]
fix42 = []
fix44 = []
fix50 = []
[lib]
name = "atomr_fix"
path = "src/lib.rs"
[[test]]
name = "session_fsm"
path = "tests/session_fsm.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr-core]
version = "0.10.1"
[dependencies.atomr-streams]
version = "0.10.1"
[dependencies.bytes]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dev-dependencies.tokio]
version = "1.39"
features = ["full"]
[lints.clippy]
todo = "deny"
unimplemented = "deny"