-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.08 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
37
38
39
40
41
[package]
name = "reduct-cli"
version = "0.5.0"
edition = "2021"
authors = ["Alexey Timin <[email protected]>"]
rust-version = "1.75.0"
license = "MPL-2.0"
keywords = ["database", "time-series", "blob", "storage", "reductstore"]
categories = ["command-line-utilities", "database"]
homepage = "https://reduct.store"
documentation = "https://reduct.store/docs/guides"
description = "A CLI client for ReductStore written in Rust"
[dependencies]
reduct-rs = "1.13.0"
clap = { version = "4.5.23", features = ["cargo"] }
dirs = "5.0.1"
toml = "0.8.10"
serde = { version = "1.0.216", features = ["derive"] }
anyhow = "1.0.94"
url = { version = "2.5.4", features = ["serde"] }
tokio = { version = "1.41.1", features = ["rt-multi-thread"] }
time-humanize = "0.1.3"
bytesize = "1.3.0"
thread-id = "5.0.0"
colored = "2.1.0"
chrono = "0.4.39"
dialoguer = "0.11.0"
futures-util = { version = "0.3.30", features = [] }
indicatif = "0.17.9"
async-trait = "0.1.78"
bytes = "1.9.0"
mime_guess = "2.0.4"
serde_json = "1.0.133"
tabled = "0.17.0"
[dev-dependencies]
rstest = "0.23.0"
tempfile = "3.14.0"
mockall = "0.13.1"