32 lines
742 B
TOML
32 lines
742 B
TOML
[package]
|
|
name = "generated_types"
|
|
version = "0.1.0"
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
edition = "2021"
|
|
|
|
[dependencies] # In alphabetical order
|
|
bytes = "1.0"
|
|
data_types = { path = "../data_types", optional = true }
|
|
observability_deps = { path = "../observability_deps" }
|
|
pbjson = "0.1"
|
|
pbjson-types = "0.1"
|
|
prost = "0.8"
|
|
regex = "1.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tonic = "0.5"
|
|
time = { path = "../time" }
|
|
|
|
[dev-dependencies]
|
|
num_cpus = "1.13.0"
|
|
|
|
[build-dependencies] # In alphabetical order
|
|
# Pin specific version of the tonic-build dependencies to match arrow
|
|
proc-macro2 = "=1.0.27"
|
|
tonic-build = "0.5"
|
|
prost-build = "0.8"
|
|
pbjson-build = "0.1"
|
|
|
|
[features]
|
|
default = []
|
|
data_types_conversions = ["data_types"]
|