forked from vortex-data/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 778 Bytes
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
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright the Vortex contributors
[package]
name = "vortex-proto"
authors = { workspace = true }
categories = { workspace = true }
description = "Protocol buffer definitions for Vortex types"
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = "README.md"
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
[package.metadata.docs.rs]
all-features = true
[dependencies]
prost = { workspace = true }
prost-types = { workspace = true }
[features]
default = ["expr"]
dtype = []
expr = ["dtype", "scalar"]
scalar = ["dtype"]
[lints]
workspace = true