-
Notifications
You must be signed in to change notification settings - Fork 638
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
65 lines (60 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "lance-core"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
description = "Lance Columnar Format -- Core Library"
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true
[dependencies]
arrow-array.workspace = true
arrow-buffer.workspace = true
arrow-schema.workspace = true
async-trait.workspace = true
lance-arrow.workspace = true
byteorder.workspace = true
bytes.workspace = true
chrono.workspace = true
datafusion-common = { workspace = true, optional = true }
datafusion-sql = { workspace = true, optional = true }
deepsize.workspace = true
futures.workspace = true
itertools.workspace = true
libc.workspace = true
mock_instant.workspace = true
moka.workspace = true
num_cpus = "1.0"
object_store = { workspace = true }
pin-project.workspace = true
prost.workspace = true
rand.workspace = true
roaring.workspace = true
serde_json.workspace = true
snafu.workspace = true
tempfile.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tokio-util.workspace = true
tracing.workspace = true
url.workspace = true
log.workspace = true
# This is used to detect CPU features at runtime.
# See src/utils/cpu.rs
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "loongarch64"), target_os = "linux"))'.dependencies]
libc = { version = "0.2" }
[dev-dependencies]
lance-testing.workspace = true
proptest.workspace = true
rstest.workspace = true
[features]
# Capture Rust backtraces in error types. When disabled (the default),
# the backtrace field is zero-sized with no overhead. At runtime, capture
# is still gated by RUST_BACKTRACE=1.
backtrace = []
datafusion = ["dep:datafusion-common", "dep:datafusion-sql"]
[lints]
workspace = true