generated from phundrak/rust-poem-openapi-template
This commit renames gejdr-crud to georm for an easier name to remember in case I publish `georm` and `georm-macros`. This commit extracts the `Georm` (formerly `Crud`) trait from `gejdr-core` to its dedicated crate `georm` on which gejdr-core now depends. Currently writing tests
18 lines
524 B
TOML
18 lines
524 B
TOML
[package]
|
|
name = "gejdr-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
serde = "1.0.215"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt", "std", "env-filter", "registry", "json", "tracing-log"] }
|
|
uuid = { version = "1.11.0", features = ["v4", "serde"] }
|
|
georm = { path = "../georm" }
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.8.3"
|
|
default-features = false
|
|
features = ["postgres", "uuid", "chrono", "migrate", "runtime-tokio", "macros"]
|