From badfdb438f97636756b948136b38694e083818ce Mon Sep 17 00:00:00 2001 From: antifallobst Date: Mon, 18 Mar 2024 09:39:12 +0100 Subject: [PATCH] refactor: renamed to icrc-server --- .env | 4 ++-- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 2 +- README.md | 5 +++++ 4 files changed, 21 insertions(+), 16 deletions(-) create mode 100644 README.md diff --git a/.env b/.env index 5f2fb29..48256ee 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -CR_DATABASE="mysql://localhost/cipher_relay" +CR_DATABASE="mysql://localhost/icrc_server" # This is only for sqlx compile time checks -DATABASE_URL="mysql://localhost/cipher_relay" \ No newline at end of file +DATABASE_URL="mysql://localhost/icrc_server" \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index d598890..7bcad15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -417,19 +417,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "cipher-relay" -version = "0.1.0" -dependencies = [ - "actix-web", - "anyhow", - "compile-time-run", - "dotenv", - "env_logger", - "log", - "sqlx", -] - [[package]] name = "colorchoice" version = "1.0.0" @@ -946,6 +933,19 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +[[package]] +name = "icrc-server" +version = "0.1.0" +dependencies = [ + "actix-web", + "anyhow", + "compile-time-run", + "dotenv", + "env_logger", + "log", + "sqlx", +] + [[package]] name = "idna" version = "0.5.0" diff --git a/Cargo.toml b/Cargo.toml index 25d00e3..dafe7e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "cipher-relay" +name = "icrc-server" version = "0.1.0" edition = "2021" authors = ["antifallobst"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..9dda443 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# ICRC - Internet Cipher Relay Chat + +Basically IRC but encrypted. + +Docs (Usage, API, etc.) will follow. \ No newline at end of file