From 4780d049d47cb34ee780c1611f5292a8ea8d7e41 Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Sat, 20 Jul 2024 16:32:19 +0300
Subject: [PATCH] chore: Update the copyright
Signed-off-by: Awiteb
---
Cargo.toml | 2 +-
LICENSE-MIT | 2 +-
crates/oxidetalis/src/database/in_chat_requests.rs | 2 +-
crates/oxidetalis/src/database/mod.rs | 2 +-
crates/oxidetalis/src/database/out_chat_requests.rs | 2 +-
crates/oxidetalis/src/database/user.rs | 2 +-
crates/oxidetalis/src/database/user_status.rs | 2 +-
crates/oxidetalis/src/errors.rs | 2 +-
crates/oxidetalis/src/extensions.rs | 2 +-
crates/oxidetalis/src/macros.rs | 2 +-
crates/oxidetalis/src/main.rs | 2 +-
crates/oxidetalis/src/middlewares/mod.rs | 2 +-
crates/oxidetalis/src/middlewares/public_key.rs | 2 +-
crates/oxidetalis/src/middlewares/signature.rs | 2 +-
crates/oxidetalis/src/nonce.rs | 2 +-
crates/oxidetalis/src/parameters/mod.rs | 2 +-
crates/oxidetalis/src/parameters/pagination.rs | 2 +-
crates/oxidetalis/src/routes/errors.rs | 2 +-
crates/oxidetalis/src/routes/mod.rs | 2 +-
crates/oxidetalis/src/routes/user.rs | 2 +-
crates/oxidetalis/src/schemas/mod.rs | 2 +-
crates/oxidetalis/src/schemas/user.rs | 2 +-
crates/oxidetalis/src/utils.rs | 2 +-
crates/oxidetalis/src/websocket/errors.rs | 2 +-
crates/oxidetalis/src/websocket/events/client.rs | 2 +-
crates/oxidetalis/src/websocket/events/mod.rs | 2 +-
crates/oxidetalis/src/websocket/events/server.rs | 2 +-
crates/oxidetalis/src/websocket/handlers/chat_request.rs | 2 +-
crates/oxidetalis/src/websocket/handlers/mod.rs | 2 +-
crates/oxidetalis/src/websocket/mod.rs | 2 +-
crates/oxidetalis_config/src/commandline.rs | 2 +-
crates/oxidetalis_config/src/defaults.rs | 2 +-
crates/oxidetalis_config/src/lib.rs | 2 +-
crates/oxidetalis_config/src/serde_with.rs | 2 +-
crates/oxidetalis_config/src/types.rs | 2 +-
crates/oxidetalis_core/src/cipher.rs | 2 +-
crates/oxidetalis_core/src/lib.rs | 2 +-
crates/oxidetalis_core/src/types/cipher.rs | 2 +-
crates/oxidetalis_core/src/types/impl_serde.rs | 2 +-
crates/oxidetalis_core/src/types/mod.rs | 2 +-
crates/oxidetalis_core/src/types/size.rs | 2 +-
crates/oxidetalis_entities/src/incoming_chat_requests.rs | 2 +-
crates/oxidetalis_entities/src/lib.rs | 2 +-
crates/oxidetalis_entities/src/outgoing_chat_requests.rs | 2 +-
crates/oxidetalis_entities/src/prelude.rs | 2 +-
crates/oxidetalis_entities/src/users.rs | 2 +-
crates/oxidetalis_entities/src/users_status.rs | 2 +-
.../src/create_incoming_chat_requests_table.rs | 2 +-
.../src/create_outgoing_chat_requests_table.rs | 2 +-
crates/oxidetalis_migrations/src/create_users_status.rs | 2 +-
crates/oxidetalis_migrations/src/create_users_table.rs | 2 +-
crates/oxidetalis_migrations/src/lib.rs | 2 +-
52 files changed, 52 insertions(+), 52 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 158da2d..6417005 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"
[workspace.package]
-authors = ["OxideTalis Developers "]
+authors = ["Awiteb ", "OxideTalis Contributors"]
readme = "README.md"
repository = "https://git.4rs.nl/oxidetalis/oxidetalis"
version = "0.1.0"
diff --git a/LICENSE-MIT b/LICENSE-MIT
index 94d972d..8cd3137 100644
--- a/LICENSE-MIT
+++ b/LICENSE-MIT
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2024 OxideTalis Developers
+Copyright (C) 2024 Awiteb , OxideTalis Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis/src/database/in_chat_requests.rs b/crates/oxidetalis/src/database/in_chat_requests.rs
index 0e36c74..061fb84 100644
--- a/crates/oxidetalis/src/database/in_chat_requests.rs
+++ b/crates/oxidetalis/src/database/in_chat_requests.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/database/mod.rs b/crates/oxidetalis/src/database/mod.rs
index c4011ac..ada1149 100644
--- a/crates/oxidetalis/src/database/mod.rs
+++ b/crates/oxidetalis/src/database/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/database/out_chat_requests.rs b/crates/oxidetalis/src/database/out_chat_requests.rs
index c3a3ea1..ed34d8a 100644
--- a/crates/oxidetalis/src/database/out_chat_requests.rs
+++ b/crates/oxidetalis/src/database/out_chat_requests.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/database/user.rs b/crates/oxidetalis/src/database/user.rs
index 4e94901..79fc109 100644
--- a/crates/oxidetalis/src/database/user.rs
+++ b/crates/oxidetalis/src/database/user.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/database/user_status.rs b/crates/oxidetalis/src/database/user_status.rs
index 1997332..8fe9e27 100644
--- a/crates/oxidetalis/src/database/user_status.rs
+++ b/crates/oxidetalis/src/database/user_status.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/errors.rs b/crates/oxidetalis/src/errors.rs
index f9b5057..50ef6d1 100644
--- a/crates/oxidetalis/src/errors.rs
+++ b/crates/oxidetalis/src/errors.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/extensions.rs b/crates/oxidetalis/src/extensions.rs
index fb1eab3..04eb4b6 100644
--- a/crates/oxidetalis/src/extensions.rs
+++ b/crates/oxidetalis/src/extensions.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/macros.rs b/crates/oxidetalis/src/macros.rs
index f2d95e2..33dfbfe 100644
--- a/crates/oxidetalis/src/macros.rs
+++ b/crates/oxidetalis/src/macros.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/main.rs b/crates/oxidetalis/src/main.rs
index 637cefc..f2e6362 100644
--- a/crates/oxidetalis/src/main.rs
+++ b/crates/oxidetalis/src/main.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/middlewares/mod.rs b/crates/oxidetalis/src/middlewares/mod.rs
index 959b892..8ec3c79 100644
--- a/crates/oxidetalis/src/middlewares/mod.rs
+++ b/crates/oxidetalis/src/middlewares/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/middlewares/public_key.rs b/crates/oxidetalis/src/middlewares/public_key.rs
index 939dc63..a811db6 100644
--- a/crates/oxidetalis/src/middlewares/public_key.rs
+++ b/crates/oxidetalis/src/middlewares/public_key.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/middlewares/signature.rs b/crates/oxidetalis/src/middlewares/signature.rs
index c94d0de..b191d64 100644
--- a/crates/oxidetalis/src/middlewares/signature.rs
+++ b/crates/oxidetalis/src/middlewares/signature.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/nonce.rs b/crates/oxidetalis/src/nonce.rs
index 75b247d..2e67a6d 100644
--- a/crates/oxidetalis/src/nonce.rs
+++ b/crates/oxidetalis/src/nonce.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/parameters/mod.rs b/crates/oxidetalis/src/parameters/mod.rs
index 4fea6e9..08b3380 100644
--- a/crates/oxidetalis/src/parameters/mod.rs
+++ b/crates/oxidetalis/src/parameters/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/parameters/pagination.rs b/crates/oxidetalis/src/parameters/pagination.rs
index 5dab644..7be35e1 100644
--- a/crates/oxidetalis/src/parameters/pagination.rs
+++ b/crates/oxidetalis/src/parameters/pagination.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/routes/errors.rs b/crates/oxidetalis/src/routes/errors.rs
index 788559b..6911f06 100644
--- a/crates/oxidetalis/src/routes/errors.rs
+++ b/crates/oxidetalis/src/routes/errors.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/routes/mod.rs b/crates/oxidetalis/src/routes/mod.rs
index 1923cb6..f63b864 100644
--- a/crates/oxidetalis/src/routes/mod.rs
+++ b/crates/oxidetalis/src/routes/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/routes/user.rs b/crates/oxidetalis/src/routes/user.rs
index 9f3b777..c1169c2 100644
--- a/crates/oxidetalis/src/routes/user.rs
+++ b/crates/oxidetalis/src/routes/user.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/schemas/mod.rs b/crates/oxidetalis/src/schemas/mod.rs
index a068073..59eff43 100644
--- a/crates/oxidetalis/src/schemas/mod.rs
+++ b/crates/oxidetalis/src/schemas/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/schemas/user.rs b/crates/oxidetalis/src/schemas/user.rs
index 4351d77..0b58c10 100644
--- a/crates/oxidetalis/src/schemas/user.rs
+++ b/crates/oxidetalis/src/schemas/user.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/utils.rs b/crates/oxidetalis/src/utils.rs
index 861926b..e65162f 100644
--- a/crates/oxidetalis/src/utils.rs
+++ b/crates/oxidetalis/src/utils.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/errors.rs b/crates/oxidetalis/src/websocket/errors.rs
index 036801d..35286da 100644
--- a/crates/oxidetalis/src/websocket/errors.rs
+++ b/crates/oxidetalis/src/websocket/errors.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/events/client.rs b/crates/oxidetalis/src/websocket/events/client.rs
index 524c3e1..893de35 100644
--- a/crates/oxidetalis/src/websocket/events/client.rs
+++ b/crates/oxidetalis/src/websocket/events/client.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/events/mod.rs b/crates/oxidetalis/src/websocket/events/mod.rs
index 6690d70..da6b9ad 100644
--- a/crates/oxidetalis/src/websocket/events/mod.rs
+++ b/crates/oxidetalis/src/websocket/events/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/events/server.rs b/crates/oxidetalis/src/websocket/events/server.rs
index 6295891..94d19ba 100644
--- a/crates/oxidetalis/src/websocket/events/server.rs
+++ b/crates/oxidetalis/src/websocket/events/server.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/handlers/chat_request.rs b/crates/oxidetalis/src/websocket/handlers/chat_request.rs
index bb8639c..e18712f 100644
--- a/crates/oxidetalis/src/websocket/handlers/chat_request.rs
+++ b/crates/oxidetalis/src/websocket/handlers/chat_request.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/handlers/mod.rs b/crates/oxidetalis/src/websocket/handlers/mod.rs
index 5f632a3..baff65f 100644
--- a/crates/oxidetalis/src/websocket/handlers/mod.rs
+++ b/crates/oxidetalis/src/websocket/handlers/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis/src/websocket/mod.rs b/crates/oxidetalis/src/websocket/mod.rs
index cd5d4ec..2b1111c 100644
--- a/crates/oxidetalis/src/websocket/mod.rs
+++ b/crates/oxidetalis/src/websocket/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver implementation
-// Copyright (C) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
diff --git a/crates/oxidetalis_config/src/commandline.rs b/crates/oxidetalis_config/src/commandline.rs
index 021172e..39a8173 100644
--- a/crates/oxidetalis_config/src/commandline.rs
+++ b/crates/oxidetalis_config/src/commandline.rs
@@ -1,5 +1,5 @@
// OxideTalis homeserver configurations
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_config/src/defaults.rs b/crates/oxidetalis_config/src/defaults.rs
index 7a9a658..9365961 100644
--- a/crates/oxidetalis_config/src/defaults.rs
+++ b/crates/oxidetalis_config/src/defaults.rs
@@ -1,5 +1,5 @@
// OxideTalis homeserver configurations
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_config/src/lib.rs b/crates/oxidetalis_config/src/lib.rs
index 700b8bb..90a4101 100644
--- a/crates/oxidetalis_config/src/lib.rs
+++ b/crates/oxidetalis_config/src/lib.rs
@@ -1,5 +1,5 @@
// OxideTalis homeserver configurations
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_config/src/serde_with.rs b/crates/oxidetalis_config/src/serde_with.rs
index 725d7c8..61abe6a 100644
--- a/crates/oxidetalis_config/src/serde_with.rs
+++ b/crates/oxidetalis_config/src/serde_with.rs
@@ -1,5 +1,5 @@
// OxideTalis homeserver configurations
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_config/src/types.rs b/crates/oxidetalis_config/src/types.rs
index fe82322..1acefc1 100644
--- a/crates/oxidetalis_config/src/types.rs
+++ b/crates/oxidetalis_config/src/types.rs
@@ -1,5 +1,5 @@
// OxideTalis homeserver configurations
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/cipher.rs b/crates/oxidetalis_core/src/cipher.rs
index 4fdd06f..1ccbdf5 100644
--- a/crates/oxidetalis_core/src/cipher.rs
+++ b/crates/oxidetalis_core/src/cipher.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/lib.rs b/crates/oxidetalis_core/src/lib.rs
index af4e532..b91ca63 100644
--- a/crates/oxidetalis_core/src/lib.rs
+++ b/crates/oxidetalis_core/src/lib.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/types/cipher.rs b/crates/oxidetalis_core/src/types/cipher.rs
index fffd4e3..7520c18 100644
--- a/crates/oxidetalis_core/src/types/cipher.rs
+++ b/crates/oxidetalis_core/src/types/cipher.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/types/impl_serde.rs b/crates/oxidetalis_core/src/types/impl_serde.rs
index 2f787dc..8f86905 100644
--- a/crates/oxidetalis_core/src/types/impl_serde.rs
+++ b/crates/oxidetalis_core/src/types/impl_serde.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/types/mod.rs b/crates/oxidetalis_core/src/types/mod.rs
index a5a28ec..65bdeed 100644
--- a/crates/oxidetalis_core/src/types/mod.rs
+++ b/crates/oxidetalis_core/src/types/mod.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_core/src/types/size.rs b/crates/oxidetalis_core/src/types/size.rs
index f292142..ed7fe5d 100644
--- a/crates/oxidetalis_core/src/types/size.rs
+++ b/crates/oxidetalis_core/src/types/size.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/incoming_chat_requests.rs b/crates/oxidetalis_entities/src/incoming_chat_requests.rs
index 2d363cd..8e99585 100644
--- a/crates/oxidetalis_entities/src/incoming_chat_requests.rs
+++ b/crates/oxidetalis_entities/src/incoming_chat_requests.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/lib.rs b/crates/oxidetalis_entities/src/lib.rs
index 7ed4e2c..4857294 100644
--- a/crates/oxidetalis_entities/src/lib.rs
+++ b/crates/oxidetalis_entities/src/lib.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/outgoing_chat_requests.rs b/crates/oxidetalis_entities/src/outgoing_chat_requests.rs
index d083e3e..b4639ab 100644
--- a/crates/oxidetalis_entities/src/outgoing_chat_requests.rs
+++ b/crates/oxidetalis_entities/src/outgoing_chat_requests.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/prelude.rs b/crates/oxidetalis_entities/src/prelude.rs
index 5adcf81..8e76845 100644
--- a/crates/oxidetalis_entities/src/prelude.rs
+++ b/crates/oxidetalis_entities/src/prelude.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/users.rs b/crates/oxidetalis_entities/src/users.rs
index 675e589..32937e9 100644
--- a/crates/oxidetalis_entities/src/users.rs
+++ b/crates/oxidetalis_entities/src/users.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_entities/src/users_status.rs b/crates/oxidetalis_entities/src/users_status.rs
index 3459192..c2fb388 100644
--- a/crates/oxidetalis_entities/src/users_status.rs
+++ b/crates/oxidetalis_entities/src/users_status.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_migrations/src/create_incoming_chat_requests_table.rs b/crates/oxidetalis_migrations/src/create_incoming_chat_requests_table.rs
index 51113e0..17eb05a 100644
--- a/crates/oxidetalis_migrations/src/create_incoming_chat_requests_table.rs
+++ b/crates/oxidetalis_migrations/src/create_incoming_chat_requests_table.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_migrations/src/create_outgoing_chat_requests_table.rs b/crates/oxidetalis_migrations/src/create_outgoing_chat_requests_table.rs
index 4b03e99..9bf791d 100644
--- a/crates/oxidetalis_migrations/src/create_outgoing_chat_requests_table.rs
+++ b/crates/oxidetalis_migrations/src/create_outgoing_chat_requests_table.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_migrations/src/create_users_status.rs b/crates/oxidetalis_migrations/src/create_users_status.rs
index 6f3b571..3f11eda 100644
--- a/crates/oxidetalis_migrations/src/create_users_status.rs
+++ b/crates/oxidetalis_migrations/src/create_users_status.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_migrations/src/create_users_table.rs b/crates/oxidetalis_migrations/src/create_users_table.rs
index e069b89..942bf42 100644
--- a/crates/oxidetalis_migrations/src/create_users_table.rs
+++ b/crates/oxidetalis_migrations/src/create_users_table.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
diff --git a/crates/oxidetalis_migrations/src/lib.rs b/crates/oxidetalis_migrations/src/lib.rs
index 846a4ef..4fbc114 100644
--- a/crates/oxidetalis_migrations/src/lib.rs
+++ b/crates/oxidetalis_migrations/src/lib.rs
@@ -1,5 +1,5 @@
// OxideTalis Messaging Protocol homeserver core implementation
-// Copyright (c) 2024 OxideTalis Developers
+// Copyright (C) 2024 Awiteb , OxideTalis Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
--
2.45.2