refactor: renamed to icrc-server
This commit is contained in:
parent
a6b022e70b
commit
badfdb438f
4
.env
4
.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
|
# This is only for sqlx compile time checks
|
||||||
DATABASE_URL="mysql://localhost/cipher_relay"
|
DATABASE_URL="mysql://localhost/icrc_server"
|
|
@ -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"
|
||||||
|
|
|
@ -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"]
|
||||||
|
|
Loading…
Reference in New Issue