-
Notifications
You must be signed in to change notification settings - Fork 41
/
Cargo.toml
58 lines (47 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "rustdx"
version = "0.4.2"
edition = "2021"
license = "MIT"
description = "受 pytdx 启发的 A 股数据获取库"
repository = "https://github.com/zjp-CN/rustdx"
authors = ["zjp <[email protected]>"]
exclude = [
"assets", "examples", "benches", "tests", "old", "tests-integration",
"CHANGELOG.md", "*.csv", "*.log", ".github", ".gitignore",
"rustfmt.toml", "LICENSE"
]
[dependencies]
miniz_oxide = "0.8"
log = { workspace = true }
serde = { workspace = true }
chrono = { workspace = true }
thiserror = { workspace = true }
lazy_static = { workspace = true }
[dependencies.encoding_rs]
version = "0.8"
features = ["fast-gb-hanzi-encode"]
[dev-dependencies]
insta = "1"
csv = "1"
[profile.test]
opt-level = 3
[profile.bench]
lto = true
opt-level = 3
[profile.release]
lto = true
opt-level = 3
[features]
default = []
docsrs = []
[workspace]
members = ["rustdx-cmd", "tests-integration"]
[workspace.dependencies]
log = "0.4"
chrono = "0.4"
thiserror = "1"
lazy_static = "1"
serde = { version = "1", features = ["derive"] }
[package.metadata.docs.rs]
all-features = true