-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.48 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
[package]
name = "historyprovider"
description = "historyprovider-rs"
license = "MIT"
repository = "https://github.com/silicon-heaven/historyprovider-rs"
version = "2.7.3"
edition = "2024"
[[bin]]
name = "hp"
[dependencies]
tokio = { version = "1.49.0", features = ["io-util", "macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"], default-features = false }
shvproto = "6.1.0"
shvrpc = { version = "14.0", features = ["journal"] }
shvclient = { version = "3.0", features = ["tokio"] }
futures = "0.3.32"
log = "0.4.29"
clap = { version = "4.5.60", features = ["derive"] }
# simple_logger = { version = "5.0.0", features = ["stderr"] }
simple_logger = { version = "5.2.0" }
url = "2.5.8"
duration-str = "0.20"
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.41", 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.47", features = ["formatting"] }
chrono = "0.4.44"
humantime = "2.3.0"
size = { version = "0.5.0", features = ["serde"] }
# [patch.crates-io]
# shvrpc = { path = "../libshvrpc-rs" }
# shvproto = { path = "../libshvproto-rs" }
# shvclient = { path = "../libshvclient-rs" }
[dev-dependencies]
async-broadcast = "0.7.2"
async-trait = "0.1.80"
shvclient = { version = "3.0", features = ["mocking", "tokio"] }
tempfile = "3.26.0"