refactor: Update public key column type from String to PublicKey #29

Manually merged
awiteb merged 6 commits from awiteb/refactor-entities-public-key into master 2024-07-24 00:20:10 +02:00 AGit
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 62cfc1bd07 - Show all commits

2
Cargo.lock generated
View file

@ -1954,6 +1954,7 @@ dependencies = [
"k256",
"rand",
"salvo-oapi",
"sea-orm",
"serde",
"sha2",
"thiserror",
@ -1964,6 +1965,7 @@ name = "oxidetalis_entities"
version = "0.1.0"
dependencies = [
"chrono",
"oxidetalis_core",
"sea-orm",
]

View file

@ -11,6 +11,7 @@ rust-version.workspace = true
[dependencies]
oxidetalis_core = { workspace = true, features = ["sea-orm"] }
sea-orm = { workspace = true }
chrono = { workspace = true }