1
Fork 0
mirror of https://github.com/RGBCube/GDUS synced 2025-07-31 15:07:47 +00:00

Move JS to seperate file

This commit is contained in:
RGBCube 2024-01-07 22:35:02 +03:00
parent aec4e27bb6
commit 718e4a7713
No known key found for this signature in database
5 changed files with 68 additions and 37 deletions

24
server/Cargo.lock generated
View file

@ -574,6 +574,24 @@ dependencies = [
"serde",
]
[[package]]
name = "embed"
version = "0.1.0"
source = "git+https://github.com/RGBCube/embed-rs#7c41253f4f6006fcc2aad189c19132d2f0cccec2"
dependencies = [
"embed-macros",
]
[[package]]
name = "embed-macros"
version = "0.1.0"
source = "git+https://github.com/RGBCube/embed-rs#7c41253f4f6006fcc2aad189c19132d2f0cccec2"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.43",
]
[[package]]
name = "encoding_rs"
version = "0.8.33"
@ -1327,6 +1345,7 @@ dependencies = [
"actix-cors",
"actix-web",
"chrono",
"embed",
"maud",
"serde",
"sqlx",
@ -2353,3 +2372,8 @@ dependencies = [
"cc",
"pkg-config",
]
[[patch.unused]]
name = "proc-macro2"
version = "1.0.75"
source = "git+https://github.com/RGBCube/proc-macro2#e1713f29a5488360d96178081ac0fca3d4abdb8a"