forked from austin-starks/ta-rs-improved
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 1.07 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
[package]
name = "ta"
version = "0.5.0"
authors = ["Austin Starks <austin@starks-technology.com>"]
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/austin-starks/ta-rs-improved"
homepage = "https://github.com/austin-starks/ta-rs-improved"
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 }
chrono = "0.4"
[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"]