21 lines
478 B
TOML
21 lines
478 B
TOML
|
[workspace]
|
||
|
members = ["crates/*"]
|
||
|
resolver = "2"
|
||
|
|
||
|
[workspace.package]
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[workspace.dependencies]
|
||
|
## crates/*
|
||
|
sanetrade_algorithms.path = "crates/algorithms"
|
||
|
alpaca_openapi.path = "crates/alpaca_openapi"
|
||
|
tinkoff_invest.path = "crates/tinkoff_invest"
|
||
|
|
||
|
## deps
|
||
|
tokio = { version = "1", features = ["sync", "rt"] }
|
||
|
futures-core = { version = "0.3", features = ["std"], default-features = false }
|
||
|
tonic = "0.11"
|
||
|
prost = "0.12"
|
||
|
prost-types = "0.12"
|