-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 815 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 815 Bytes
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
[package]
name = "hdfs-native-object-store"
version = "0.16.0"
edition = "2021"
authors = ["Adam Binford <adamq43@gmail.com>"]
homepage = "https://github.com/datafusion-contrib/hdfs-native-object-store"
repository = "https://github.com/datafusion-contrib/hdfs-native-object-store"
keywords = ["hadoop", "hdfs", "object_store"]
description = "object_store implementation for Native HDFS client"
readme = "README.md"
license = "Apache-2.0"
[dependencies]
async-trait = "0.1"
bytes = "1"
chrono = "0.4"
futures = "0.3"
hdfs-native = "0.13"
object_store = "0.13"
thiserror = "2"
tokio = { version = "1", features = ["rt", "net", "io-util", "macros", "sync", "time"] }
[dev-dependencies]
env_logger = "0.11"
serial_test = "3"
[features]
integration-test = ["hdfs-native/integration-test", "object_store/integration"]