Giri Priyadarshan 17a3ad9620
tonic gRPC example (#659)
* tonic gRPC example

* minor change to client output

Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
2022-04-05 20:35:33 +08:00

25 lines
438 B
TOML

[package]
name = "entity"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "entity"
path = "src/lib.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
[dependencies.sea-orm]
# path = "../../../" # remove this line in your own project
version = "^0.7.0"
features = [
"macros",
"debug-print",
"runtime-tokio-rustls",
# "sqlx-mysql",
"sqlx-postgres",
# "sqlx-sqlite",
]
default-features = false