-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (34 loc) · 1.15 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
42
[package]
name = "reduct-rs"
version = "1.14.0"
authors = ["Alexey Timin <[email protected]>"]
edition = "2021"
rust-version = "1.80.0"
license = "MPL-2.0"
description = "ReductStore Client SDK for Rust."
repository = "https://github.com/reductstore/reduct-rs"
readme = "README.md"
keywords = ["database", "time-series", "client", "sdk", "reductstore"]
categories = ["database"]
[features]
default = []
test-api-114 = [] # Test API 1.13
[lib]
crate-type = ["lib"]
[dependencies]
reduct-base = { git = "https://github.com/reductstore/reductstore.git", branch = "main" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
http = "1.0.0"
chrono = { version = "0.4.38", features = ["serde"] }
bytes = "1.4.0"
futures = "0.3.17"
futures-util = "0.3.28"
async-stream = "0.3.5"
async-channel = "2.1.1"
tokio = { version = "1.0", default-features = false, features = ["macros"] }
[dev-dependencies]
tokio = { version = "1.0", features = ["test-util", "rt-multi-thread"] }
rstest = "0.23.0"
test-with = { version = "0.14.1", default-features = false }