-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
60 lines (54 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "hdfs-native"
version = "0.5.0"
edition = "2021"
authors = ["Adam Binford <adamq43@gmail.com>"]
homepage = "https://github.com/Kimahriman/hdfs-native"
repository = "https://github.com/Kimahriman/hdfs-native"
keywords = ["hadoop", "hdfs"]
description = "Native HDFS client implementation in Rust"
readme = "../README.md"
license = "Apache-2.0"
[dependencies]
async-trait = { version = "0.1", optional = true }
base64 = "0.21"
bytes = "1"
chrono = { version = "0.4", optional = true }
crc = "3"
futures = "0.3"
g2p = "1"
gsasl-sys = { version = "0.2", default-features = false, optional = true }
libc = "0.2"
libgssapi = { version = "0.6", default-features = false, optional = true }
log = "0.4"
num-traits = "0.2"
object_store = { version = "0.7", optional = true, features = ["cloud"] }
prost = "0.11"
prost-types = "0.11"
roxmltree = "0.18"
socket2 = "0.5"
thiserror = "1"
tokio = { version = "1", features = ["rt", "net", "io-util", "macros", "sync", "time"] }
url = "2"
users = { version = "0.11", default-features = false }
uuid = { version = "1", features = ["v4"] }
which = { version = "4", optional = true }
[build-dependencies]
prost-build = { version = "0.11", optional = true }
protobuf-src = { version = "1.1", optional = true }
[dev-dependencies]
criterion = "0.5"
env_logger = "0.10"
serial_test = "2.0.0"
tempfile = "3"
which = "4"
[features]
kerberos = ["libgssapi"]
object_store = ["dep:object_store", "async-trait", "chrono"]
token = ["gsasl-sys"]
generate-protobuf = ["prost-build", "protobuf-src"]
integration-test = ["which"]
benchmark = []
[[bench]]
name = "ec"
harness = false