forked from greyblake/ta-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 865 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
[package]
name = "ta"
version = "0.1.5"
authors = ["Sergey Potapov <blake131313@gmail.com>"]
edition = "2018"
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]
error-chain = "0.11"
[dev-dependencies]
assert_approx_eq = "1.0.0"
csv = "0.15.0"
bencher = "0.1.5"
rand = "0.6.5"
[[bench]]
name = "indicators"
path = "benches/indicators.rs"
harness = false