forked from Xuanwo/hdrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 884 Bytes
/
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
[package]
authors = ["Xuanwo <[email protected]>"]
categories = ["command-line-utilities"]
description = "Rust native client to hdfs"
documentation = "https://docs.rs/hdrs"
edition = "2021"
license = "Apache-2.0"
name = "hdrs"
repository = "https://github.com/Xuanwo/hdrs"
version = "0.3.2"
[package.metadata.docs.rs]
all-features = true
[features]
async_file = ["dep:futures", "dep:blocking"]
vendored = ["hdfs-sys/vendored"]
[dependencies]
blocking = { version = "1.3.0", optional = true }
errno = "0.3"
futures = { version = "0.3", optional = true }
hdfs-sys = { version = "0.3", default-features = false, features = ["hdfs_3_3"] }
libc = "0.2"
log = "0.4"
[dev-dependencies]
anyhow = "1"
dotenv = "0.15"
env_logger = "0.11"
futures = "0.3"
rand = "0.8"
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4", "fast-rng", "macro-diagnostics"] }