* tonic gRPC example * minor change to client output Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
25 lines
438 B
TOML
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 |