-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 802 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 802 Bytes
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
[package]
name = "ebyte-e32-ui"
version = "0.5.0"
edition = "2021"
description = "CLI + GUI for interacting with EByte E32 LoRa modules"
license-file = "LICENSE"
repository = "https://github.com/barafael/ebyte-e32-ui"
default-run = "ebyte-e32-gui"
[[bin]]
name = "ebyte-e32-cli"
path = "bin/cli.rs"
[[bin]]
name = "ebyte-e32-gui"
path = "bin/gui.rs"
[dependencies]
anyhow = "1.0.66"
clap = { version = "3.1.14", features = ["derive"] }
#ebyte-e32 = { git = "https://github.com/barafael/ebyte-e32-rs", rev = "fee291a427df8e7c55e8dc154e181257ebb52a41", features = [
#"arg_enum",
#] }
ebyte-e32 = { version = "0.9.0", features = ["value_enum"] }
embedded-hal = "0.2.7"
klask = "1"
linux-embedded-hal = "0.3.2"
nb = "1.0.0"
rustyline = "10.0.0"
serde = "1.0.147"
serde_derive = "1.0.147"
toml = "0.5.9"