sanetrade/Cargo.toml

21 lines
556 B
TOML
Raw Permalink Normal View History

2024-06-07 14:47:02 +00:00
[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 }
2024-08-21 18:06:23 +00:00
tonic = { version = "0.11", features = ["channel", "codegen", "prost", "tls", "tls-roots"] }
2024-06-07 14:47:02 +00:00
prost = "0.12"
prost-types = "0.12"