Skip to content

Commit

Permalink
cfkv
Browse files Browse the repository at this point in the history
  • Loading branch information
komal-sai-yral committed Dec 11, 2024
1 parent ee7c68d commit 340f495
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ icondata_core = "0.1.0"
serde_json = "1.0"
crc32fast = "1.4.0"
uts2ts = "0.4.1"
rand_chacha = { version = "0.3.1" }
rand_chacha = { version = "0.3.1", optional = true }
web-sys = { version = "0.3", features = [
"Clipboard",
"Navigator",
Expand Down Expand Up @@ -132,6 +132,7 @@ hydrate = [
"ic-agent/wasm-bindgen",
"dep:web-sys",
"reqwest/native-tls",
"dep:rand_chacha",
"tonic/codegen",
"speedate",
]
Expand Down
5 changes: 5 additions & 0 deletions ssr/src/page/root.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
use candid::Principal;
use leptos::*;
use leptos_router::*;
use rand_chacha::{
rand_core::{RngCore, SeedableRng},
ChaCha8Rng,
};
use yral_canisters_common::utils::time::current_epoch;

use crate::{
component::spinner::FullScreenSpinner,
Expand Down

0 comments on commit 340f495

Please sign in to comment.