-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
53 lines (45 loc) · 1.05 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
[package]
name = "lobster"
version = "0.7.0"
authors = ["Michele Lacchia <[email protected]>"]
edition = "2018"
license = "ISC"
readme = "README.md"
description = "A fast limit order book (LOB)"
documentation = "https://docs.rs/lobster"
homepage = "https://github.com/rubik/lobster"
repository = "https://github.com/rubik/lobster"
keywords = ["orderbook", "order", "limit", "hft"]
[badges]
coveralls = { repository = "rubik/lobster" }
travis-ci = { repository = "rubik/lobster" }
[dependencies]
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
csv = "1.1"
serde = { version = "1", features = ["derive"] }
[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
[[bench]]
name = "simple"
harness = false
[[bench]]
name = "quantcup"
harness = false