-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.53 KB
/
Cargo.toml
File metadata and controls
53 lines (46 loc) · 1.53 KB
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
[package]
name = "vortex-ffi"
description = "Native C FFI bindings for Vortex"
readme = "README.md"
# This crate is not meant to be consumed by other Rust code but rather produces a static binary
# that can be linked to by other languages.
publish = false
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
categories = { workspace = true }
[package.metadata.docs.rs]
all-features = true
[dependencies]
arrow-array = { workspace = true, features = ["ffi"] }
arrow-schema = { workspace = true }
async-fs = { workspace = true }
futures = { workspace = true }
itertools = { workspace = true }
mimalloc = { workspace = true, optional = true }
object_store = { workspace = true, features = ["aws", "azure", "gcp"] }
paste = { workspace = true }
prost = { workspace = true }
tracing = { workspace = true, features = ["std", "log"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
url = { workspace = true, features = [] }
vortex = { workspace = true, features = ["object_store"] }
[dev-dependencies]
rand = { workspace = true }
tempfile = { workspace = true }
vortex-array = { workspace = true, features = ["_test-harness"] }
[build-dependencies]
cbindgen = { workspace = true }
[features]
mimalloc = ["dep:mimalloc"]
[lib]
name = "vortex_ffi"
crate-type = ["staticlib", "cdylib"]
[lints]
workspace = true