-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (35 loc) · 891 Bytes
/
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.package]
version = "0.3.0"
repository = "https://github.com/arkedge/kble"
license = "MIT"
edition = "2021"
readme = "README.md"
[workspace]
resolver = "2"
members = [
"kble",
"kble-serialport",
"kble-socket",
"kble-c2a",
"kble-eb90",
"kble-tcp",
"kble-dump",
]
[workspace.dependencies]
anyhow = "1"
futures = "0.3"
futures-util = { version = "0.3", features = ["sink"] }
pin-project-lite = { version = "0.2" }
bytes = "1.5.0"
tokio = "1"
tokio-util = { version = "0.7", features = ["codec"] }
tokio-tungstenite = { version = "0.20" }
axum = { version = "0.6", default-features = false }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"]}
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
kble-socket = "0.3.0"
notalawyer = "0.1.0"
notalawyer-clap = "0.1.0"
notalawyer-build = "0.1.0"