-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (44 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
46 lines (44 loc) · 1.24 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 = "espipe"
description = "A minimalist command-line utility to pipe documents from a file or I/O stream into an Elasticsearch cluster."
repository = "https://github.com/VimCommando/espipe"
homepage = "https://github.com/VimCommando/espipe"
documentation = "https://docs.rs/crate/espipe"
version = "0.2.0"
edition = "2024"
rust-version = "1.88"
license = "Apache-2.0"
readme = "README.md"
keywords = ["elasticsearch", "bulk", "cli", "ndjson", "csv"]
categories = ["command-line-utilities"]
include = [
"Cargo.toml",
"Cargo.lock",
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"src/**/*.rs",
"tests/**/*.rs",
"tests/fixtures/*.ndjson",
]
[dependencies]
base64 = "0.22.1"
clap = { version = "^4.6.1", features = ["derive"] }
csv = "^1.4.0"
elasticsearch = "^9.1.0-alpha.1"
env_logger = "^0.11.10"
eyre = "^0.6.12"
fluent-uri = "^0.4.1"
futures = "^0.3.32"
log = "^0.4.29"
reqwest = { version = "0.12.28", features = ["blocking"] }
serde_json = { version = "1.0.149", features = ["raw_value"] }
serde = { version = "^1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
tempfile = "3.24.0"
tokio = "1.52.1"
url = { version = "2.5.8", features = ["serde"] }
[dev-dependencies]
bytes = "1.11.1"
rcgen = "0.14.5"
rustls = "0.23.34"