* change: rename `core` crate to `service` in examples * fix(jsonrpsee-example): broken dependency
21 lines
417 B
TOML
21 lines
417 B
TOML
[package]
|
|
name = "tonic-example-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
tonic-example-service = { path = "../service" }
|
|
tonic = "0.7"
|
|
tokio = { version = "1.17", features = ["macros", "rt-multi-thread", "full"] }
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|
|
prost = "0.10.0"
|
|
serde = "1.0"
|
|
|
|
[lib]
|
|
path = "./src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.7"
|