[package]
edition = "2021"
name = "forgefix"
version = "0.3.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ForgeFIX is an opinionated FIX 4.2 client library for the buy-side written in Rust. ForgeFIX is optimized for the subset of the FIX protocol used by buy-side firms connecting to brokers and exchanges for communicating orders and fills."
readme = "README.md"
keywords = [
"fix",
"finance",
"client",
"protocol",
"fast",
]
license-file = "LICENSE"
repository = "https://github.com/ForgeFinx/ForgeFIX/"
[lib]
name = "forgefix"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.69"
features = ["backtrace"]
[dependencies.chrono]
version = "0.4.26"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.regex]
version = "1.9.1"
[dependencies.rusqlite]
version = "0.32.1"
features = ["chrono"]
optional = true
[dependencies.thiserror]
version = "1.0.44"
[dependencies.tokio]
version = "1.29.1"
features = [
"net",
"macros",
"rt",
"rt-multi-thread",
"io-util",
"time",
"fs",
"sync",
]
[features]
default = ["sqlite"]
sqlite = ["rusqlite"]