-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 861 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
[package]
name = "meshtacean"
version = "0.1.0"
authors = ["Clay Rosenthal <rust@mail.clayrosenthal.me>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/clayrosenthal/meshtacean"
description = "A CLI for the Meshtastic Client API"
readme = "README.md"
keywords = ["meshtastic", "mesh", "lora", "hardware"]
categories = ["command-line-interface", "hardware-support"]
include = [
"build.rs",
"src/**/*",
"src/*",
"protobufs/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
[features]
gen = ["dep:prost-build"]
[dependencies]
clap = { version = "4.5.26", features = ["derive"] }
dirs = "6.0.0"
prost = "0.13.4"
prost-types = "0.13.4"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tokio-serial = "5.4.5"
[build-dependencies]
prost-build = { version = "0.13.4", optional = true }