1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Add dependencies

This commit is contained in:
RGBCube 2023-12-30 10:53:34 +03:00
parent 6f5ea634b0
commit 283d858a6d
No known key found for this signature in database
5 changed files with 4262 additions and 0 deletions

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
Cargo.nix linguist-language=GeneratedFileInvalidLanguageName

1
.gitignore vendored
View file

@ -2,6 +2,7 @@
!src/ !src/
!.gitattributes
!.gitignore !.gitignore
!*.css !*.css

1693
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

2553
Cargo.nix Normal file

File diff suppressed because it is too large Load diff

View file

@ -9,3 +9,17 @@ repositoty = "https://github.com/RGBCube/rgbcube.github.io"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
actix-web = "4.4.1"
bytes = "1.5.0"
cargo_toml = "0.17.2"
embed = { git = "https://github.com/RGBCube/embed-rs" }
env_logger = "0.10.1"
log = "0.4.20"
maud = { version = "0.25.0", features = ["actix-web"] }
mime_guess = "2.0.4"
minify-js = "0.6.0"
tar = "0.4.40"
tokio = { version = "1.35.1", features = ["full"] }
[build]
incremental = true