forked from geminik23/ctrader-fix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
48 lines (38 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "ctrader-fix"
version = "0.5.4"
authors = ["Jaemin Kim <geminik23@gmail.com>"]
edition = "2021"
description = "A rust implementation of the cTrader FIX API."
license = "MIT"
readme = "README.md"
# documentation = "https://docs.rs/"
repository = "https://github.com/geminik23/ctrader-fix"
keywords = ["ctrade", "fix", "api", "finance", "trading"]
[dependencies]
async-macros = "2.0"
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
num_enum = "0.7"
log = "0.4"
thiserror = "1.0"
uuid = {version = "1.3", features = ["v4", "fast-rng"]}
#
async-std = {version="1.12", features = ["unstable"], optional = true}
[features]
default = ["async_std_default"]
tokio1 = ["async_std_tokio1"]
tokio02 = ["async_std_tokio2"]
tokio03 = ["async_std_tokio3"]
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"]
[dev-dependencies]
dotenv = "0.15"
env_logger = "0.11"
async-std = {version="1.12", features = ["attributes"]}
[lib]
name = "cfix"