[workspace] members = ["."] [package] name = "arduino-plotter" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Lechev.space ", "Lachezar Lechev"] description = "API bindings (protocol) and Server/Client API for Arduino serial plotter" categories = ["api-bindings", "asynchronous", "visualization", "data-structures"] keywords = ["arduino", "plotting", "protocol", "json"] repository = "https://github.com/LechevSpace/arduino-plotter" rust-version = "1.70" [dependencies] tracing = "0.1" thiserror = "1" serde_json = "1" serde = { version = "1", features = ["derive"] } tokio = { version = "1", features = ["net", "sync"] } tokio-websockets = { version = "0.8", features = ["client", "server", "sha1_smol", "rand"] } tokio-stream = "0.1" futures-util = { version = "0.3", features = ["sink"] } parse-display = "0.9" [dev-dependencies] rand = "0.8" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } tokio = { version = "1", features = ["net", "sync", "macros", "rt-multi-thread"] }