forked from Xuanwo/hdfs-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 850 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
35
36
[package]
authors = ["Xuanwo <[email protected]>"]
categories = ["command-line-utilities"]
description = "Bindings to HDFS Native C API"
documentation = "https://docs.rs/hdfs-sys"
edition = "2021"
license = "Apache-2.0"
name = "hdfs-sys"
repository = "https://github.com/Xuanwo/hdrs"
version = "0.3.0"
links = "hdfs"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["hdfs_2_6"]
hdfs_2_2 = []
hdfs_2_3 = ["hdfs_2_2"]
hdfs_2_4 = ["hdfs_2_3"]
hdfs_2_5 = ["hdfs_2_4"]
hdfs_2_6 = ["hdfs_2_5"]
hdfs_2_7 = ["hdfs_2_6"]
hdfs_2_8 = ["hdfs_2_7"]
hdfs_2_9 = ["hdfs_2_8"]
hdfs_2_10 = ["hdfs_2_9"]
hdfs_3_0 = ["hdfs_2_10"]
hdfs_3_1 = ["hdfs_3_0"]
hdfs_3_2 = ["hdfs_3_1"]
hdfs_3_3 = ["hdfs_3_2"]
vendored = ["java-locator/locate-jdk-only"] # JRE is not enough for building, we need the JDK
[build-dependencies]
cc = "1"
java-locator = "0.1"