-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.04 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
[package]
name = "twurst-server"
description = "Twirp server related code"
keywords = ["Twirp"]
repository = "https://github.com/helsing-ai/twurst"
documentation = "https://docs.rs/twurst-server"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[features]
grpc = [
"dep:tonic",
"dep:tokio-stream",
"dep:pin-project-lite",
"twurst-error/tonic-012",
]
[dependencies]
twurst-error = { workspace = true, features = ["axum-08"] }
axum.workspace = true
http-body-util.workspace = true
pin-project-lite = { workspace = true, optional = true }
prost-reflect = { workspace = true, features = ["derive", "serde"] }
serde.workspace = true
serde_json.workspace = true
tonic = { workspace = true, optional = true, features = ["transport", "prost"] }
tokio-stream = { workspace = true, optional = true }
tracing.workspace = true
trait-variant.workspace = true
[dev-dependencies]
prost.workspace = true
tokio = { workspace = true, features = ["macros", "rt"] }
tower-service.workspace = true