-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (46 loc) · 1.63 KB
/
Cargo.toml
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
49
50
51
52
53
54
55
56
[workspace]
members = [
"model/v42",
"model/v44",
"serde",
"model/test",
"model/generator",
"model/core",
]
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.package]
version = "0.1.0"
authors = ["Softstream <[email protected]>"]
readme = "readme.md"
license-file = "LICENSE"
edition = "2021"
rust-version = "1.77.0"
repository = "https://github.com/softstream-link/fix"
keywords = ["financial information exchange", "FIX", "FIX protocol", "FIX 4.2", "FIX 4.4", "FIX 5.0", "FIX 5.0 SP2", "FIX 5.0 SP2 EP264"]
categories = ["finance, encoding, network-programming, parsing"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive", "std"] }
serde_json = { version = "1.0" }
quick-xml = { version = "0.31.0", features = ["serialize"] }
quote = { version = "1.0" }
syn = { version = "2.0" }
proc-macro2 = { version = "1.0" }
prettyplease = { version = "0.2" }
bytes = { version = "1.5" }
itoa = { version = "1.0" } # fast writes of integers to buffer
ryu = { version = "1.0" } # fast writes of floats to buffer
convert_case = { version = "0.6" }
base64 = { version = "0.22" }
fix_model_generator = { version = "0.1.0", path = "model/generator" }
fix_model_test = { version = "0.1.0", path = "model/test" }
fix_model_core = { version = "0.1.0", path = "model/core" }
fix_serde = { version = "0.1.0", path = "serde" }
# logging
log = { version = "0.4" }
env_logger = { version = "0.11" }
colored = { version = "2.0" }
# testing
trybuild = { version = "1.0", features = ["diff"] }
# benchmarking
criterion = { version = "0.5" }