(MERGE) keystore v2 done !

This commit is contained in:
core 2023-08-18 23:58:36 -04:00
commit 9665fda815
Signed by: core
GPG Key ID: FDBF740DADDCEECF
5 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
<data-source source="LOCAL" name="trifidapi@localhost" uuid="39c81b89-3fc4-493f-b203-7a00527cffe6">
<data-source source="LOCAL" name="trifid@localhost" uuid="39c81b89-3fc4-493f-b203-7a00527cffe6">
<driver-ref>postgresql</driver-ref>
<synchronize>true</synchronize>
<jdbc-driver>org.postgresql.Driver</jdbc-driver>

4
Cargo.lock generated
View File

@ -3928,14 +3928,14 @@ dependencies = [
[[package]]
name = "trifid_api_entities"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"sea-orm",
]
[[package]]
name = "trifid_api_migration"
version = "0.1.2"
version = "0.2.0"
dependencies = [
"async-std",
"async-trait",

View File

@ -26,8 +26,8 @@ log = "0.4" # Logging
simple_logger = "4" # Logging
sea-orm = { version = "0.12", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]} # Database
trifid_api_migration = { version = "0.1", path = "trifid_api_migration" } # Database
trifid_api_entities = { version = "0.1", path = "trifid_api_entities" } # Database
trifid_api_migration = { version = "0.2", path = "trifid_api_migration" } # Database
trifid_api_entities = { version = "0.2", path = "trifid_api_entities" } # Database
rand = "0.8" # Misc.
hex = "0.4" # Misc.

View File

@ -1,6 +1,6 @@
[package]
name = "trifid_api_entities"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
description = "Database entities for trifid-api"
license = "GPL-3.0-or-later"

View File

@ -1,6 +1,6 @@
[package]
name = "trifid_api_migration"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
description = "Database migrations for trifid-api"
license = "GPL-3.0-or-later"