diff options
author | tempest <git@ashen.earth> | 2025-04-13 16:40:05 -0600 |
---|---|---|
committer | tempest <git@ashen.earth> | 2025-04-13 16:40:05 -0600 |
commit | 128cc42557c8d7da46c63a40ea4469ed0eb7f26d (patch) | |
tree | 6b70766ec46061240a1d42fde100187697d60bc8 /Cargo.toml | |
parent | e487e052b3cfcf90f6b831052e30323d3e744526 (diff) |
Compiles, cannot find data context
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml index 7fa8aa3..b0fe882 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ wasm-bindgen = { version = "=0.2.100", optional = true } serde = { version = "^1.0.219", features = ["derive"] } stylance = { version = "0.5.5" } toml = { version = "0.8.20", features = ["parse"], optional = true } -uuid = { version = "1.16.0", features = ["v4"], optional = true } -chrono = { version = "0.4.40", optional = true } +uuid = { version = "1.16.0" } +chrono = { version = "0.4.40" } fs2 = { version = "0.4.3", optional = true} futures = { version = "0.3.31", optional = true} @@ -37,13 +37,12 @@ ssr = [ "dep:leptos_axum", "dep:tokio-stream", "dep:toml", - "dep:uuid", - "dep:chrono", "dep:fs2", "dep:futures", "leptos/ssr", "leptos_meta/ssr", "leptos_router/ssr", + "uuid/v4", ] # Defines a size-optimized profile for the WASM bundle in release mode |