summaryrefslogtreecommitdiffstats
path: root/lib/sellershut-core/Cargo.toml
blob: b5e1bb9baca8ba28f48d28fa4c9afde1bdd6bbe9 (plain)
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
[package]
name = "sellershut-core"
version = "0.1.0"
edition = "2024"
license.workspace = true
homepage.workspace = true
documentation.workspace = true
description.workspace = true

[dependencies]
prost = "0.13.5"
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
time = { workspace = true, optional = true }
tonic.workspace = true
tonic-types = "0.13.0"

[features]
default = []
auth = []
serde = ["dep:serde", "serde/derive", "serde_json"]
time = [
    "dep:time",
    "serde",
    "time/serde",
    "time/parsing",
    "time/formatting",
    "time/macros",
]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[build-dependencies]
tonic-build = { version = "0.13.0", features = ["cleanup-markdown"] }