1[package] 2name = "grpc_server" 3version = "0.1.0" 4edition.workspace = true 5rust-version.workspace = true 6readme.workspace = true 7 8 9[[bin]] 10name = "grpc_server" 11path = "src/main.rs" 12 13 14[dependencies] 15# Internal crates 16proto_bindings = { workspace = true } 17# External crates 18tokio = { workspace = true } 19tonic = { workspace = true }