-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.05 KB
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 = "shvcall"
description = "CLI utility to invoke remote SHV RPC calls"
license = "MIT"
repository = "https://github.com/silicon-heaven/shvcall-rs"
version = "3.9.10"
edition = "2024"
[[bin]]
name = "shvcall"
[features]
readline = ["dep:crossterm", "dep:rustyline-async"]
serial = ["dep:serialport"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
shvproto = "3.6.28"
shvrpc = "7.1.7"
futures = "0.3.29"
smol = "2"
log = "0.4.20"
simple_logger = { version = "5.0.0", features = ["stderr"] }
clap = { version = "4.4.12", features = ["derive"] }
rustyline-async = { version = "0.4.1", optional = true }
crossterm = { version = "0.29", optional = true }
url = "2.4.1"
futures-time = "3.0.0"
async-channel = "2.3.1"
serialport = { version = "4.7.1", optional = true }
# For local development
#[patch."https://github.com/silicon-heaven/libshvproto-rs"]
#shvproto = { path = "../libshvproto-rs" }
# [patch."https://github.com/silicon-heaven/libshvrpc-rs"]
# shvrpc = { path = "../libshvrpc-rs" }