* version update, all examples marked with #notcomplete does not compile with cargo run * WIP * salvo example fixed * testing, and boost a minor version * fmt * build dependency update * CI * cleanup --------- Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
18 lines
338 B
TOML
18 lines
338 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"] }
|
|
salvo = { version = "0.49" }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../../" # remove this line in your own project
|
|
version = "0.12.0-rc.4" # sea-orm version
|