**Rationale:** Some bugs were discovered in Project Nautilus integration. **Changes:** - Command and Telemetry paths now support `.` - Telemetry Values now work with Boolean types in the frontend - Constant Command Parameters no longer reset in the panel editor when you open the inspector Reviewed-on: #12 Co-authored-by: Sergey Savelyev <sergeysav.nn@gmail.com> Co-committed-by: Sergey Savelyev <sergeysav.nn@gmail.com>
41 lines
1005 B
TOML
41 lines
1005 B
TOML
[workspace]
|
|
members = ["api", "api-core", "api-proc-macro", "server", "examples/simple_producer", "examples/simple_command"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
authors = ["Sergey <me@sergeysav.com>"]
|
|
|
|
[workspace.dependencies]
|
|
actix-web = "4.12.1"
|
|
actix-ws = "0.3.0"
|
|
anyhow = "1.0.100"
|
|
api = { path = "./api" }
|
|
api-core = { path = "./api-core" }
|
|
api-proc-macro = { path = "./api-proc-macro" }
|
|
chrono = { version = "0.4.42" }
|
|
derive_more = { version = "2.1.1" }
|
|
env_logger = "0.11.8"
|
|
fern = "0.7.1"
|
|
futures-util = "0.3.31"
|
|
log = "0.4.29"
|
|
num-traits = "0.2.19"
|
|
papaya = "0.2.3"
|
|
proc-macro-error = "1.0.4"
|
|
quote = "1.0.42"
|
|
serde = { version = "1.0.228" }
|
|
serde_json = "1.0.148"
|
|
sqlx = "0.8.6"
|
|
syn = "2.0.112"
|
|
thiserror = "2.0.17"
|
|
tokio = { version = "1.48.0" }
|
|
tokio-stream = "0.1.17"
|
|
tokio-test = "0.4.4"
|
|
tokio-tungstenite = { version = "0.28.0" }
|
|
tokio-util = "0.7.17"
|
|
trybuild = "1.0.114"
|
|
uuid = { version = "1.19.0", features = ["v4"] }
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|