forked from lance-format/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (92 loc) · 2.52 KB
/
Cargo.toml
File metadata and controls
95 lines (92 loc) · 2.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[workspace]
members = [
"lance-arrow",
"lance-core",
"lance-index",
"lance-linalg",
"lance-testing",
"lance-test-macros",
"lance",
]
# Python package needs to be built by maturin.
resolver = "2"
[workspace.package]
version = "0.8.8"
edition = "2021"
authors = ["Lance Devs <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/lancedb/lance"
readme = "README.md"
description = "A columnar data format that is 100x faster than Parquet for random access."
keywords = [
"data-format",
"data-science",
"machine-learning",
"apache-arrow",
"data-analytics",
]
categories = [
"database-implementations",
"data-structures",
"development-tools",
"science",
]
rust-version = "1.70"
[workspace.dependencies]
lance-arrow = { version = "=0.8.8", path = "./lance-arrow" }
lance-core = { version = "=0.8.8", path = "./lance-core" }
lance-index = { version = "=0.8.8", path = "./lance-index" }
lance-linalg = { version = "=0.8.8", path = "./lance-linalg" }
lance-test-macros = { version = "=0.8.8", path = "./lance-test-macros" }
lance-testing = { version = "=0.8.8", path = "./lance-testing" }
approx = "0.5.1"
# Note that this one does not include pyarrow
arrow = { version = "47.0.0", optional = false }
arrow-arith = "47.0"
arrow-array = "47.0"
arrow-buffer = "47.0"
arrow-cast = "47.0"
arrow-data = "47.0"
arrow-ipc = { version = "47.0", features = ["zstd"] }
arrow-ord = "47.0"
arrow-row = "47.0"
arrow-schema = "47.0"
arrow-select = "47.0"
async-recursion = "1.0"
async-trait = "0.1"
half = { "version" = "=2.3.1", default-features = false, features = [
"num-traits",
] }
bytes = "1.4"
byteorder = "1.5"
chrono = "0.4.23"
criterion = { version = "0.5", features = ["async", "async_tokio"] }
datafusion-common = "32.0"
datafusion-sql = "32.0"
either = "1.0"
futures = "0.3"
lazy_static = "1"
log = "0.4"
mock_instant = { version = "0.3.1", features = ["sync"] }
num-traits = "0.2"
num_cpus = "1.0"
object_store = { version = "0.7.1", features = ["aws", "gcp", "azure"] }
pin-project = "1.0"
pprof = { version = "0.12", features = ["flamegraph", "criterion"] }
prost = "0.12"
prost-build = "0.12"
prost-types = "0.12"
rand = { version = "0.8.3", features = ["small_rng"] }
roaring = "0.10.1"
serde = { version = "^1" }
serde_json = { version = "1" }
snafu = "0.7.4"
tempfile = "3"
tokio = { version = "1.23", features = ["rt-multi-thread", "macros", "fs"] }
tracing = "0.1"
url = "2.3"
uuid = { version = "1.2", features = ["v4", "serde"] }
[profile.bench]
opt-level = 3
debug = true
strip = false