Files
KairoXYZ/Cargo.toml
fdiniello 990e8955e4 Fix left overs after models refactor (#3)
Co-authored-by: Felipe Diniello <felipediniello@pm.me>
Reviewed-on: #3
2023-06-19 18:37:49 +02:00

21 lines
664 B
TOML

[workspace]
members = [
# Well of course, all the common/shared source code among services is going to end up somewhere:
"kairo-common",
# The intended backend application to expose a REST API:
"kairo-core",
# The intended frontend application for GUI navigation:
"kairo-nav",
# Tools and whatnots for testing or simulating other components:
"simulation-tools",
# The service doing the calculations:
"xyz-engine"
]
[workspace.dependencies]
tokio = { version = "1.28.1", features = ["rt-multi-thread", "macros"] }
dotenv = "0.15.0"
chrono = "0.4.24"
paho-mqtt = "0.12.1"
serde = "1.0.162"
serde_json = { version = "1.0.95" }