From 6175166c794b3e9e1fd661c90c0e669389842407 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 3 Apr 2022 22:16:05 +0800 Subject: [PATCH] Add jsonrpsee to example list --- README.md | 1 + examples/jsonrpsee_example/Cargo.toml | 1 + examples/jsonrpsee_example/README.md | 2 +- src/lib.rs | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c214f588..c580ee9d 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Join our Discord server to chat with others in the SeaQL community! + [Axum Example](https://github.com/SeaQL/sea-orm/tree/master/examples/axum_example) + [Poem Example](https://github.com/SeaQL/sea-orm/tree/master/examples/poem_example) + [GraphQL Example](https://github.com/SeaQL/sea-orm/tree/master/examples/graphql_example) ++ [jsonrpsee Example](https://github.com/SeaQL/sea-orm/tree/master/examples/jsonrpsee_example) ## Features diff --git a/examples/jsonrpsee_example/Cargo.toml b/examples/jsonrpsee_example/Cargo.toml index 3a0253a7..6bdd71b3 100644 --- a/examples/jsonrpsee_example/Cargo.toml +++ b/examples/jsonrpsee_example/Cargo.toml @@ -2,6 +2,7 @@ name = "sea-orm-jsonrpsee-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 [workspace] diff --git a/examples/jsonrpsee_example/README.md b/examples/jsonrpsee_example/README.md index dbb739a0..be4c78ca 100644 --- a/examples/jsonrpsee_example/README.md +++ b/examples/jsonrpsee_example/README.md @@ -1,4 +1,4 @@ -# Poem with SeaORM example app +# jsonrpsee with SeaORM example app 1. Modify the `DATABASE_URL` var in `.env` to point to your chosen database diff --git a/src/lib.rs b/src/lib.rs index c9aa3525..261a67e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,6 +39,7 @@ //! + [Axum Example](https://github.com/SeaQL/sea-orm/tree/master/examples/axum_example) //! + [Poem Example](https://github.com/SeaQL/sea-orm/tree/master/examples/poem_example) //! + [GraphQL Example](https://github.com/SeaQL/sea-orm/tree/master/examples/graphql_example) +//! + [jsonrpsee Example](https://github.com/SeaQL/sea-orm/tree/master/examples/jsonrpsee_example) //! //! ## Features //!