Create workspace from previous implementation files

This commit is contained in:
2023-05-21 13:52:18 +02:00
parent b84f46ed57
commit a5976252e8
23 changed files with 1374 additions and 15 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[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" }
influxdb = { version = "0.6.0", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }