29 lines
584 B
TOML
29 lines
584 B
TOML
[package]
|
|
name = "common"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
tantivy = ["dep:tantivy"]
|
|
|
|
[dependencies]
|
|
prost-types = { workspace = true }
|
|
rust_decimal = { workspace = true }
|
|
rusty-money = { workspace = true }
|
|
|
|
tonic = "0.14.6"
|
|
prost = "0.14.4"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
|
|
# Search
|
|
tantivy = { workspace = true, optional = true }
|
|
serde_json.workspace = true
|
|
tonic-prost = "0.14.6"
|
|
|
|
[build-dependencies]
|
|
tonic-build = { version = "0.14.6" }
|
|
prost-build = "0.14.4"
|
|
tonic-prost-build = "0.14.6"
|