refactor: renamed to icrc-server

This commit is contained in:
antifallobst 2024-03-18 09:39:12 +01:00
parent a6b022e70b
commit badfdb438f
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
4 changed files with 21 additions and 16 deletions

4
.env
View File

@ -1,4 +1,4 @@
CR_DATABASE="mysql://localhost/cipher_relay" CR_DATABASE="mysql://localhost/icrc_server"
# This is only for sqlx compile time checks # This is only for sqlx compile time checks
DATABASE_URL="mysql://localhost/cipher_relay" DATABASE_URL="mysql://localhost/icrc_server"

26
Cargo.lock generated
View File

@ -417,19 +417,6 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cipher-relay"
version = "0.1.0"
dependencies = [
"actix-web",
"anyhow",
"compile-time-run",
"dotenv",
"env_logger",
"log",
"sqlx",
]
[[package]] [[package]]
name = "colorchoice" name = "colorchoice"
version = "1.0.0" version = "1.0.0"
@ -946,6 +933,19 @@ version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "icrc-server"
version = "0.1.0"
dependencies = [
"actix-web",
"anyhow",
"compile-time-run",
"dotenv",
"env_logger",
"log",
"sqlx",
]
[[package]] [[package]]
name = "idna" name = "idna"
version = "0.5.0" version = "0.5.0"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "cipher-relay" name = "icrc-server"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["antifallobst"] authors = ["antifallobst"]

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# ICRC - Internet Cipher Relay Chat
Basically IRC but encrypted.
Docs (Usage, API, etc.) will follow.