-
Notifications
You must be signed in to change notification settings - Fork 129
/
Cargo.toml
44 lines (38 loc) · 1.03 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
[package]
name = "ta"
version = "0.5.0"
authors = ["Sergey Potapov <[email protected]>"]
edition = "2021"
description = "Technical analysis library. Implements number of indicators: EMA, SMA, RSI, MACD, Stochastic, etc."
keywords = ["technical-analysis", "financial", "ema", "indicators", "trading"]
license = "MIT"
repository = "https://github.com/greyblake/ta-rs"
homepage = "https://github.com/greyblake/ta-rs"
documentation = "https://docs.rs/ta"
readme = "README.md"
categories = ["science", "algorithms"]
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
[badges]
travis-ci = { repository = "greyblake/ta-rs", branch = "master" }
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
assert_approx_eq = "1.0.0"
csv = "1.1.0"
bencher = "0.1.5"
rand = "0.6.5"
bincode = "1.3.1"
[profile.release]
lto = true
[[bench]]
name = "indicators"
path = "benches/indicators.rs"
harness = false
[[example]]
name = "ema_serde"
path = "examples/ema_serde.rs"
required-features = ["serde"]