-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (64 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
74 lines (64 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "pricelevel"
version = "0.7.0"
edition = "2024"
authors = ["Joaquin Bejar <jb@taunais.com>"]
description = "A high-performance, lock-free price level implementation for limit order books in Rust. This library provides the building blocks for creating efficient trading systems with support for multiple order types and concurrent access patterns."
license = "MIT"
readme = "README.md"
repository = "https://github.com/joaquinbejar/PriceLevel"
homepage = "https://github.com/joaquinbejar/PriceLevel"
keywords = ["finance", "orderbook", "trading"]
categories = ["finance", "data-structures"]
include = [
"benches/**/*",
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"examples/**/*.rs",
"tests/**/*.rs",
"Makefile",
"rust-toolchain.toml",
"Draws/**/*.png",
"Docker/**/*.Dockerfile",
"Docker/**/*.yml",
]
[dependencies]
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true, features = ["derive"] }
crossbeam = { workspace = true }
uuid = { workspace = true, features = ["v4", "v5", "serde"] }
ulid = { workspace = true, features = ["serde"] }
dashmap = { workspace = true }
sha2 = { workspace = true }
[dev-dependencies]
criterion = { version = "0.8", default-features = false, features = ["html_reports"] }
[[test]]
name = "tests"
path = "tests/unit/mod.rs"
[[bench]]
name = "benches"
path = "benches/mod.rs"
harness = false
[lib]
name = "pricelevel"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[workspace]
members = [
"examples"
]
[workspace.dependencies]
pricelevel = { path = "." }
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
crossbeam = "0.8"
uuid = { version = "1.21", features = ["v4", "v5", "serde"] }
ulid = { version = "1.2", features = ["serde"] }
dashmap = "6.1"
sha2 = "0.10"