df51d 0b15f4f5e2
change: rename core crate to service in examples (#1662)
* change: rename `core` crate to `service` in examples

* fix(jsonrpsee-example): broken dependency
2023-05-23 10:33:44 +08:00

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"