-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (37 loc) · 1.18 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
[workspace]
resolver = "2"
members = [
"crates/quant-primitives",
"crates/quant-indicators",
"crates/quant-metrics",
]
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "MIT"
authors = ["Yannick Gger <yannick.gger@gmail.com>"]
repository = "https://github.com/yannickgranger/quant-core"
homepage = "https://github.com/yannickgranger/quant-core"
keywords = ["trading", "quantitative", "finance", "decimal", "indicators"]
categories = ["finance", "mathematics", "algorithms"]
[workspace.dependencies]
# Internal
quant-primitives = { path = "crates/quant-primitives", version = "0.7.0" }
quant-indicators = { path = "crates/quant-indicators", version = "0.7.0" }
quant-metrics = { path = "crates/quant-metrics", version = "0.7.0" }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Decimal (no float lies)
rust_decimal = { version = "1", features = ["serde"] }
rust_decimal_macros = "1"
# Serialization
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1", features = ["arbitrary_precision"] }
# Error handling
thiserror = "2"
# Testing
proptest = "1"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"