-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (28 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = ["."]
[package]
name = "arduino-plotter"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Lechev.space <dev@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"] }
http = "1"
parse-display = "0.9"
rand = "0.8"
[dev-dependencies]
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tokio = { version = "1", features = ["net", "sync", "macros", "rt-multi-thread"] }