stage 1 of switching from raw sqlx to sea_orm
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-07-06 23:21:34 +02:00
parent 6ed7b16bf6
commit 26e39c7c06
53 changed files with 1201 additions and 710 deletions

12
neo-entity/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "neo-entity"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
chrono = {version = "0.4", features = ["serde"] }
sea-orm = { version = "^0.8", features = ["macros", "with-chrono", "with-uuid", "with-json"], default-features = false }
serde = "1.0"
serde_json = "1.0"
uuid = { version = "*", features = ["v4", "serde"]}