-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
67 lines (55 loc) · 1.11 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
61
62
63
64
65
66
67
[package]
name = "arrow-client"
version = "0.12.6"
authors = ["Ondrej Perutka <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
build = "build.rs"
edition = "2021"
[features]
discovery = ["lazy_static"]
threads = ["tokio/rt-multi-thread"]
exports = ["libc"]
all = ["discovery", "threads", "exports"]
[lib]
crate-type = ["rlib", "cdylib", "staticlib"]
[dependencies]
bytes = "1"
farmhash = "1.1"
fs2 = "0.4"
json = "0.12"
openssl = "0.10"
time = "0.1"
trait-variant = "0.1"
[dependencies.futures]
version = "0.3"
default-features = false
features = ["std"]
[dependencies.lazy_static]
version = "1.3"
optional = true
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.tokio]
version = "1"
features = ["rt", "net", "time"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec", "io"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[build-dependencies]
cc = "1.0"
vcpkg = "0.2"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = "s"
debug = false
panic = "abort"
lto = true
codegen-units = 1
incremental = false