-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.13 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
37
38
39
[package]
name = "shvcall"
description = "CLI utility to invoke remote SHV RPC calls"
license = "MIT"
repository = "https://github.com/silicon-heaven/shvcall-rs"
version = "3.11.13"
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 = "6.1.5"
shvrpc = "15.0.3"
futures = "0.3.32"
smol = "2"
log = "0.4.20"
simple_logger = { version = "5.2.0", features = ["stderr"] }
clap = { version = "4.5.60", features = ["derive"] }
rustyline-async = { version = "0.4.9", optional = true }
crossterm = { version = "0.29", optional = true }
url = "2.5.8"
futures-time = "3.0.0"
futures-rustls = "0.26.0"
rustls-pemfile = "2.2.0"
rustls-platform-verifier = "0.7.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" }