forked from substrait-io/substrait-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (60 loc) · 1.73 KB
/
Cargo.toml
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
# SPDX-License-Identifier: Apache-2.0
[package]
name = "substrait"
version = "0.5.1"
edition = "2021"
rust-version = "1.60"
description = "Cross-Language Serialization for Relational Algebra"
documentation = "https://docs.rs/substrait"
readme = "README.md"
homepage = "https://substrait.io"
repository = "https://github.com/substrait-io/substrait-rs"
license = "Apache-2.0"
keywords = ["substrait"]
build = "build.rs"
include = [
"LICENSE",
"build.rs",
"src/**/*.rs",
"src/version.in",
"substrait/LICENSE",
"substrait/README.md",
"substrait/extensions/**/*.yaml",
"substrait/proto/**/*.proto",
"substrait/text/**/*.yaml",
]
[features]
default = []
pbjson = ["dep:pbjson", "dep:pbjson-build", "dep:pbjson-types"]
protoc = ["dep:protobuf-src"]
serde = ["dep:prost-wkt", "dep:prost-wkt-build", "dep:prost-wkt-types"]
semver = ["dep:semver"]
[dependencies]
pbjson = { version = "0.5", optional = true }
pbjson-types = { version = "0.5", optional = true }
prost = "0.11"
prost-types = "0.11"
prost-wkt = { version = "0.4", optional = true }
prost-wkt-types = { version = "0.4", optional = true }
semver = { version = "1", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[build-dependencies]
gix = { version = "0.42", default-features = false }
heck = "0.4"
pbjson-build = { version = "0.5", optional = true }
prost-build = { version = "0.11", default-features = false }
prost-types = "0.11"
prost-wkt-build = { version = "0.4", optional = true }
protobuf-src = { version = "1", optional = true }
schemars = "0.8"
semver = "1"
serde_yaml = "0.9"
typify = "0.0.10"
walkdir = "2"
[dev-dependencies]
serde_yaml = "0.9"
walkdir = "2"
[package.metadata.docs.rs]
features = ["semver"]
rustdoc-args = ["--cfg", "docsrs"]