-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
38 lines (31 loc) · 958 Bytes
/
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
[package]
name = "trade_aggregation"
version = "12.0.2"
authors = ["MathisWellmann <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
description = "Aggregate trades into user defined candles using information driven rules"
repository = "https://github.com/MathisWellmann/trade_aggregation-rs"
readme = "README.md"
keywords = ["trading", "candles"]
categories = ["algorithms"]
exclude = ["/img", "/.idea"]
[dependencies]
csv = "1"
thiserror = "1"
trade_aggregation_derive = { path = "./trade_aggregation_derive", version = "0.4.1" }
# Optionals
serde = { version = "1", features = ["derive"], optional = true }
chrono = { version = "0.4", features = ["serde"], optional = true }
[dev-dependencies]
round = "0.1"
criterion = "0.5"
plotters = "0.3"
[[bench]]
name = "candle_aggregation"
harness = false
[features]
serde = ["dep:serde"]
chrono = ["dep:chrono"]
[workspace.metadata.spellcheck]
config = "./.spellcheck/spellcheck.toml"