-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "historyprovider"
description = "historyprovider-rs"
license = "MIT"
repository = "https://github.com/silicon-heaven/historyprovider-rs"
version = "2.4.0"
edition = "2024"
[[bin]]
name = "hp"
[dependencies]
tokio = { version = "1.49.0", features = ["macros", "net", "rt", "rt-multi-thread", "sync", "time"] }
shvproto = "3.6.27"
shvrpc = "7.1.8"
shvclient = { version = "0.21.10", features = ["tokio"] }
futures = "0.3.31"
log = "0.4.29"
clap = { version = "4.5.54", features = ["derive"] }
# simple_logger = { version = "5.0.0", features = ["stderr"] }
simple_logger = { version = "5.1.0" }
url = "2.5.4"
duration-str = "0.18"
sha1 = { version = "0.10.6", features = ["asm", "sha1-asm"] }
hex = "0.4.3"
tokio-util = { version = "0.7.18", features = ["io"] }
async-compression = { version = "0.4.36", features = ["gzip", "tokio"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml_ng = "0.10.0"
tokio-stream = { version = "0.1.18", features = ["fs"] }
time = { version = "0.3.41", features = ["formatting"] }
chrono = "0.4.42"
humantime = "2.3.0"
# [patch."https://github.com/silicon-heaven/libshvclient-rs"]
# shvclient = { path = "../libshvclient-rs" }
#
# [patch."https://github.com/silicon-heaven/libshvproto-rs"]
# shvproto = { path = "../libshvproto-rs" }
#
# [patch."https://github.com/silicon-heaven/libshvrpc-rs"]
# shvrpc = { path = "../libshvrpc-rs" }
#
[dev-dependencies]
async-broadcast = "0.7.2"
async-trait = "0.1.80"
shvclient = { version = "0.21.10", features = ["mocking"] }
tempfile = "3.24.0"