ctrader-fix 0.5.4

A rust implementation of the cTrader FIX API.
Documentation
[dependencies.async-macros]
version = "2.0"

[dependencies.async-std]
features = ["unstable"]
optional = true
version = "1.12"

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

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.num_enum]
version = "0.7"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.uuid]
features = ["v4", "fast-rng"]
version = "1.3"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.12"

[dev-dependencies.dotenv]
version = "0.15"

[dev-dependencies.env_logger]
version = "0.11"

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

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

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

[features]
async_std_default = ["async-std/unstable"]
async_std_tokio1 = ["async-std/unstable", "async-std/tokio1"]
async_std_tokio2 = ["async-std/unstable", "async-std/tokio02"]
async_std_tokio3 = ["async-std/unstable", "async-std/tokio03"]
default = ["async_std_default"]
tokio02 = ["async_std_tokio2"]
tokio03 = ["async_std_tokio3"]
tokio1 = ["async_std_tokio1"]

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

[package]
authors = ["Jaemin Kim <geminik23@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "A rust implementation of the cTrader FIX API."
edition = "2021"
keywords = ["ctrade", "fix", "api", "finance", "trading"]
license = "MIT"
name = "ctrader-fix"
readme = "README.md"
repository = "https://github.com/geminik23/ctrader-fix"
version = "0.5.4"