Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
m5l14i11 committed Aug 3, 2023
1 parent e911444 commit 067562c
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions ta_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[workspace]
members = [
"core",
"momentum",
"indicators/momentum",
"indicators/trend",
"indicators/volatility",
"indicators/volume",
"patterns",
"price",
"strategy",
"trend",
"volatility",
"volume",
"utils"
]

Expand Down
9 changes: 9 additions & 0 deletions ta_lib/indicators/momentum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "momentum"
version = "0.1.0"
edition = "2021"

[dependencies]
core = { path = "../../core" }
price = { path = "../../price" }
utils = { path = "../../utils" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
core = { path = "../core" }
core = { path = "../../core" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
core = { path = "../core" }
core = { path = "../../core" }
trend = { path = "../trend" }
utils = { path = "../utils" }
utils = { path = "../../utils" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions ta_lib/indicators/volume/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "volume"
version = "0.1.0"
edition = "2021"

[dependencies]
core = { path = "../../core" }
price = { path = "../../price" }
utils = { path = "../../utils" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions ta_lib/momentum/Cargo.toml

This file was deleted.

9 changes: 0 additions & 9 deletions ta_lib/volume/Cargo.toml

This file was deleted.

0 comments on commit 067562c

Please sign in to comment.