-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Cargo.toml
35 lines (33 loc) · 812 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]
authors = ["AMvDev <amv-dev@protonmail.com>"]
categories = ["mathematics", "science"]
description = "Yet another Technical Analysis library. For rust now."
edition = "2021"
keywords = ["technical", "analysis", "trading", "indicators"]
license = "Apache-2.0"
name = "yata"
readme = "README.md"
repository = "https://github.com/amv-dev/yata"
version = "0.7.0"
include = [
"/benches",
"/src/*.rs",
"/src/core",
"/src/helpers",
"/src/indicators",
"/src/methods",
"/README.md",
"/LICENSE",
"/rustfmt.toml",
"/.gitignore",
"/.editorconfig",
]
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
[features]
default = ["serde"]
period_type_u16 = []
period_type_u32 = []
period_type_u64 = []
unsafe_performance = []
value_type_f32 = []