mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 07:08:16 +01:00
19 lines
512 B
TOML
19 lines
512 B
TOML
[package]
|
|
name = "example-rest-grpc-multiplex"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum" }
|
|
futures = "0.3"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
prost = "0.11"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tonic = { version = "0.8" }
|
|
tower = { version = "0.4", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[build-dependencies]
|
|
tonic-build = { version = "0.8", features = ["prost"] }
|