-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (57 loc) · 1.39 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
57
58
59
60
61
62
63
[package]
name = "matchina"
version = "0.1.3"
edition = "2021"
license = "MIT"
description = "Minimalistic matching engine designed for a trading exchange"
readme = "./README.md"
documentation = "https://docs.rs/matchina"
repository = "https://github.com/frank-leap/matchina"
keywords = ["matching-engine"]
categories = ["finance", "trading"]
rust-version = "1.77.0"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.2", features = ["derive"] }
compact_str = { version = "0.7.1", features = ["serde"] }
core_affinity = "0.8.1"
crossbeam-channel = "0.5.8"
indexmap = "2.2.6"
num = "0.4.1"
rand = "0.8.5"
rust_decimal = "1.32.0"
serde = { version = "~1.0", features = ["derive"] }
serde_json = { version = "~1.0" }
thiserror = "~1.0"
tracing = "0.1.37"
tracing-appender = { version = "0.2.2", features = ["parking_lot"] }
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json", "parking_lot"] }
[dev-dependencies]
criterion = "0.5.1"
rstest = "0.18.2"
tap = "1.0.1"
[[bin]]
name = "generator"
[[bench]]
name = "processor"
harness = false
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
incremental = false
overflow-checks = false
rpath = false
lto = "thin"
panic = "abort"
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false
debug-assertions = false
incremental = false
overflow-checks = false
rpath = false
lto = "thin"
codegen-units = 1