Compare commits
18 Commits
fix/404-on
...
d841ee88ee
Author | SHA1 | Date | |
---|---|---|---|
d841ee88ee | |||
c101fba07c | |||
01778866e0 | |||
2bfa5161ee | |||
ae57282dda | |||
0e022fabef | |||
b0623a3f1b | |||
66179ba858 | |||
63f82eab07
|
|||
f00adf9276
|
|||
216b4cee80
|
|||
cdc02a601d
|
|||
8bcb479b57
|
|||
b9d5c25137 | |||
e9fb20ad6e
|
|||
d98222cd4a | |||
c6effdfa15
|
|||
f17986fa16 |
22
Cargo.toml
22
Cargo.toml
@@ -13,7 +13,7 @@ config = "./spellcheck.toml"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
# Errors
|
# Errors
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.75"
|
||||||
thiserror = "1.0.50"
|
thiserror = "2.0.0"
|
||||||
|
|
||||||
# Async
|
# Async
|
||||||
async-std = "1.12.0"
|
async-std = "1.12.0"
|
||||||
@@ -29,7 +29,7 @@ const_format = "0.2.32"
|
|||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
validator = { version = "0.17.0", features = ["derive"] }
|
validator = { version = "0.17.0", features = ["derive"] }
|
||||||
# Http client
|
# Http client
|
||||||
reqwest = "0.11.24"
|
reqwest = "0.12.0"
|
||||||
# Password strength estimation
|
# Password strength estimation
|
||||||
zxcvbn = "2.2.2"
|
zxcvbn = "2.2.2"
|
||||||
# Image processing/conversion
|
# Image processing/conversion
|
||||||
@@ -44,7 +44,7 @@ tracing = "0.1.40"
|
|||||||
tracing-forest = "0.1.6"
|
tracing-forest = "0.1.6"
|
||||||
|
|
||||||
# SCSS -> CSS + usage in rust code
|
# SCSS -> CSS + usage in rust code
|
||||||
turf = "0.9.3"
|
turf = "0.10.0"
|
||||||
|
|
||||||
# Dioxus
|
# Dioxus
|
||||||
dioxus-free-icons = { version = "0.9", features = ["ionicons", "font-awesome-solid"] }
|
dioxus-free-icons = { version = "0.9", features = ["ionicons", "font-awesome-solid"] }
|
||||||
@@ -60,7 +60,7 @@ dioxus = { version = "0.6.3", features = ["web"] }
|
|||||||
web-sys = "0.3.69"
|
web-sys = "0.3.69"
|
||||||
|
|
||||||
# Matrix
|
# Matrix
|
||||||
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "fa6066b8", default-features = false, features = ["rustls-tls", "js"] }
|
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "216e878231eb230255cb4796d45e5bc0faa0d388", default-features = false, features = ["rustls-tls", "js"] }
|
||||||
|
|
||||||
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
||||||
# Utils
|
# Utils
|
||||||
@@ -73,11 +73,23 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
|
|||||||
dioxus = { version = "0.6.3", features = ["desktop"] }
|
dioxus = { version = "0.6.3", features = ["desktop"] }
|
||||||
|
|
||||||
# Matrix
|
# Matrix
|
||||||
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "fa6066b8", default-features = false, features = ["rustls-tls"] }
|
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "216e878231eb230255cb4796d45e5bc0faa0d388", default-features = false, features = ["rustls-tls"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
regex = "1.10.3"
|
regex = "1.10.3"
|
||||||
|
|
||||||
|
[profile]
|
||||||
|
|
||||||
|
[profile.wasm-dev]
|
||||||
|
inherits = "dev"
|
||||||
|
opt-level = 1
|
||||||
|
|
||||||
|
[profile.server-dev]
|
||||||
|
inherits = "dev"
|
||||||
|
|
||||||
|
[profile.android-dev]
|
||||||
|
inherits = "dev"
|
||||||
|
|
||||||
[package.metadata.turf]
|
[package.metadata.turf]
|
||||||
minify = true
|
minify = true
|
||||||
|
|
||||||
|
@@ -9,7 +9,7 @@ WORKDIR /usr/src/beau-gosse-du-92
|
|||||||
|
|
||||||
# git is required by the git-version crate
|
# git is required by the git-version crate
|
||||||
RUN apt update \
|
RUN apt update \
|
||||||
&& apt install -y --no-install-recommends git \
|
&& apt install -y --no-install-recommends git git-lfs \
|
||||||
&& apt clean
|
&& apt clean
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
@@ -214,6 +214,11 @@ input {
|
|||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide the preloader as soon as the application is loaded and ready to be rendered
|
||||||
|
#preloader {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
Reference in New Issue
Block a user