This commit is contained in:
Chris Tsang 2022-04-05 21:23:55 +08:00
parent 17a3ad9620
commit 31edb2c409
17 changed files with 5 additions and 5 deletions

View File

@ -293,7 +293,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
path: [basic, actix_example, actix3_example, axum_example, graphql_example, rocket_example, poem_example, jsonrpsee_example, tonic_grpc_example]
path: [basic, actix_example, actix3_example, axum_example, graphql_example, rocket_example, poem_example, jsonrpsee_example, tonic_example]
steps:
- uses: actions/checkout@v2

View File

@ -1,7 +1,8 @@
[package]
name = "tonic_grpc_example"
name = "sea-orm-tonic-example"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,9 +1,7 @@
# Tonic.rs + gRPC + SeaORM
# Tonic + gRPC + SeaORM
Simple implementation of gRPC using SeaORM.
uses models actix_example
run server using
```bash
cargo run --bin server

View File

@ -34,6 +34,7 @@
//!
//! + [Getting Started](https://www.sea-ql.org/SeaORM/docs/index)
//! + [Usage Example](https://github.com/SeaQL/sea-orm/tree/master/examples/basic)
//!
//! + [Rocket Example](https://github.com/SeaQL/sea-orm/tree/master/examples/rocket_example)
//! + [Actix Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix_example)
//! + [Axum Example](https://github.com/SeaQL/sea-orm/tree/master/examples/axum_example)