Skip to content

Commit b2583b6

Browse files
Shield SeaORM: Add dash to package name
1 parent 1790efd commit b2583b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1297
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ sea-orm = { workspace = true, features = [
1616
"runtime-tokio-native-tls",
1717
"sqlx-mysql",
1818
"sqlx-postgres",
19-
"sqlx-sqlite"
19+
"sqlx-sqlite",
2020
] }
2121
sea-orm-migration = { workspace = true, features = [
2222
"runtime-tokio-native-tls",
2323
"sqlx-mysql",
2424
"sqlx-postgres",
25-
"sqlx-sqlite"
25+
"sqlx-sqlite",
2626
] }
27-
shield-seaorm = { path = "../../packages/storage/shield-seaorm", features = [
27+
shield-sea-orm = { path = "../../packages/storage/shield-sea-orm", features = [
2828
"all-providers",
2929
] }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use sea_orm::{Database, DbErr};
22
use sea_orm_migration::migrator::MigratorTrait;
3-
use shield_seaorm::migrations::Migrator;
3+
use shield_sea_orm::migrations::Migrator;
44

55
pub async fn run() -> Result<(), DbErr> {
66
let database = Database::connect("sqlite::memory:").await?;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use sea_orm_migration::prelude::*;
2-
use shield_seaorm::migrations::Migrator;
2+
use shield_sea_orm::migrations::Migrator;
33

44
#[async_std::main]
55
async fn main() {

packages/storage/shield-seaorm/Cargo.toml renamed to packages/storage/shield-sea-orm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "shield-seaorm"
2+
name = "shield-sea-orm"
33
description = "SeaORM storage for Shield."
44

55
authors.workspace = true
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/storage/shield-seaorm/src/entities/email_address.rs renamed to packages/storage/shield-sea-orm/src/entities/email_address.rs

File renamed without changes.

0 commit comments

Comments
 (0)