-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 1.32 KB
/
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 = "shv-http-gateway"
version = "0.2.0"
edition = "2021"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }
[dev-dependencies]
shvbroker = { git = "https://github.com/silicon-heaven/shvbroker-rs", branch = "master" }
sse-codec = "0.3.2"
tokio-util = { version = "0.7.13", features = ["compat"] }
[dependencies]
shvproto = { git = "https://github.com/silicon-heaven/libshvproto-rs", branch = "master", version = "3.2" }
shvrpc = { git = "https://github.com/silicon-heaven/libshvrpc-rs", branch = "master", version = "3.2" }
shvclient = { git = "https://github.com/silicon-heaven/libshvclient-rs", branch = "main", version = "0.4", features = ["tokio"] }
rocket = { version = "0.5.1", features = ["tls", "json"] }
tokio = { version = "1.43.0", features = ["net", "time"] }
log = "0.4.25"
url = { version = "2.5.4", features = ["serde"] }
clap = { version = "4.5.26", features = ["derive"] }
duration-str = "0.12.0"
base64 = "0.22.1"
rocket_cors = "0.6.0"
const_format = "0.2.34"
simple_logger = { version = "5.0.0", features = ["stderr"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
rand_chacha = { version = "0.9.0", features = ["os_rng"] }
[features]
webspy = []
# [patch."https://github.com/silicon-heaven/libshvclient-rs"]
# shvclient = { path = "../libshvclient-rs" }