-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
41 lines (37 loc) · 1014 Bytes
/
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
[package]
name = "scuffle-image-processor-proto"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
readme = "README.md"
documentation = "https://docs.rs/scuffle-image-processor-proto"
license = "MIT OR Apache-2.0"
description = "Protocol buffers for the Image Processor service."
keywords = ["protobuf", "grpc", "image", "processor"]
[dependencies]
prost = "0.13"
tonic = "0.12"
pbjson = { version = "0.7", optional = true }
serde = { version = "1.0", optional = true }
scuffle-workspace-hack.workspace = true
[build-dependencies]
prost-build = "0.13"
tonic-build = "0.12"
pbjson-build = { version = "0.7", optional = true }
[features]
server = []
client = []
serde = [
"dep:serde",
"pbjson-build",
"pbjson",
]
[package.metadata.xtask]
# Even though these features effect the build.rs they are additive because they do not
# effect each other.
addative-features = [
"server",
"client",
"serde",
]