# 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 = "2021" name = "ctrader-fix" version = "0.5.4" authors = ["Jaemin Kim "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A rust implementation of the cTrader FIX API." readme = "README.md" keywords = [ "ctrade", "fix", "api", "finance", "trading", ] license = "MIT" repository = "https://github.com/geminik23/ctrader-fix" [lib] name = "cfix" path = "src/lib.rs" [[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" [dependencies.async-macros] version = "2.0" [dependencies.async-std] version = "1.12" features = ["unstable"] optional = true [dependencies.async-trait] version = "0.1" [dependencies.chrono] version = "0.4" features = ["serde"] [dependencies.log] version = "0.4" [dependencies.num_enum] version = "0.7" [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" [dependencies.thiserror] version = "1.0" [dependencies.uuid] version = "1.3" features = [ "v4", "fast-rng", ] [dev-dependencies.async-std] version = "1.12" features = ["attributes"] [dev-dependencies.dotenv] version = "0.15" [dev-dependencies.env_logger] version = "0.11" [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"]