-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
68 lines (64 loc) · 1.97 KB
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
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "ClawFoxyVision"
version = "0.2.0"
edition = "2021"
description = "Advanced financial time series forecasting library using LSTM, GRU, and CNN-LSTM neural networks for price prediction with Rust and Burn"
license = "MIT"
authors = ["ClawFoxyVision Team"]
readme = "README.md"
repository = "https://github.com/rustic-ml/ClawFoxyVision"
homepage = "https://github.com/rustic-ml/ClawFoxyVision"
documentation = "https://docs.rs/ClawFoxyVision"
keywords = ["time-series", "forecasting", "lstm", "neural-networks", "price-prediction"]
categories = ["science", "mathematics", "algorithms", "finance"]
# Exclude files and directories from being included in the published package
exclude = [
"src/test/*",
"examples/*",
"target/*",
"models/*",
"Cargo.lock",
".gitignore",
"ClawFoxyVision_250px.png",
"ClawFoxyVision.png",
"cursor-extensions.txt",
"rustfmt.toml",
"run_experiment.sh",
"run_model.sh"
]
[dependencies]
polars = { version = "0.47.1", features = ["lazy",
"strings",
"temporal",
"rolling_window"] }
bincode = "2.0.1"
chrono = "0.4.34"
burn = { version = "0.17.0", features = ["tch", "ndarray", "train", "wgpu", "fusion"] }
burn-core = "0.17.0"
burn-autodiff = "0.17.0"
burn-train = "0.17.0"
burn-tch = "0.17.0"
burn-ndarray = "0.17.0"
thiserror = "2.0.11"
anyhow = "1.0.75"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.0"
ndarray = "0.16.1"
rayon = { version = "1.8", optional = false }
num-traits = "0.2.19"
rand = "0.9.1"
polars-utils = "0.47.1"
rustalib = "1.0.8"
log = "0.4.27"
metrics = "0.22"
metrics-exporter-prometheus = { version = "0.13", features=["hyper"] }
once_cell = "1.19"
sha2 = "0.10"
[build-dependencies]
built = "0.8.0"
[[bin]]
name = "etl_parquet"
path = "src/bin/etl_parquet.rs"
[dev-dependencies]
criterion = { version = "0.5", features=["default"] }