-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.33 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
43
[workspace]
resolver = "2"
default-members = ["."]
members = [".", "seed-es-data"]
[package]
name = "esdump-rs"
version = "0.1.1"
edition = "2021"
description = "Dump Elasticsearch indexes to object storage"
license = "MIT"
repository = "https://github.com/GitGuardian/esdump-rs/"
[dependencies]
elasticsearch = "8.5.0-alpha.1"
serde = { version = "~1", features = ["derive"] }
serde_json = { version = "~1", features = ["raw_value"] }
tokio = { version = "1.38.1", features = ["full"] }
url = "2.5.0"
dotenv = "0.15.0"
clap = { version = "4.5.20", features = ["derive"] }
anyhow = "1.0.81"
uuid = { version = "1.10.0", features = ["v7"] }
indicatif = { version = "0.17.6", features = ["in_memory"] }
tracing-indicatif = "0.3.6"
tracing = { version = "0.1.37", features = ["release_max_level_debug"] }
tracing-core = "0.1.30"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
futures-util = { version = "0.3.30", default-features = false, features = ["std"] }
bytes = "1.6.1"
flate2 = { version = "1.0.17", features = ["zlib-ng"], default-features = false }
object_store = { version = "0.10.1", features = ["aws", "gcp", "azure"] }
async-trait = "0.1.81"
zstd = "0.13.2"
human-duration = "0.1.0"
bytesize = "1.3.0"
log = "0.4.21"
byte-unit = { version = "5.1.4", features = ["serde"] }
clap-num = "1.1.1"
[profile.test]
opt-level = 1