-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.06 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
[package]
name = "vortex-tensor"
authors = { workspace = true }
categories = { workspace = true }
description = "Vortex tensor extension type"
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
[lints]
workspace = true
[dependencies]
vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
vortex-compressor = { workspace = true }
vortex-error = { workspace = true }
vortex-fastlanes = { workspace = true }
vortex-session = { workspace = true }
vortex-utils = { workspace = true }
half = { workspace = true }
itertools = { workspace = true }
num-traits = { workspace = true }
prost = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
mimalloc = { workspace = true }
rand = { workspace = true }
rand_distr = { workspace = true }
rstest = { workspace = true }
vortex-btrblocks = { path = "../vortex-btrblocks" }