Skip to content

Commit

Permalink
relax dependency constraints in cargo toml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburniske committed Feb 5, 2024
1 parent 3249c9f commit 3d37522
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,24 @@ axum = { version = "0.7", optional = true, features = ["macros"] }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.5", features = ["fs"], optional = true }

image = { version = "0.24.6", optional = true}
webp = { version= "0.2.2", optional = true}
serde = { version = "1.0.164", features = ["derive"] }
serde_qs = "0.12.0"
image = { version = "0.24", optional = true}
webp = { version= "0.2", optional = true}
serde = { version = "1.0", features = ["derive"] }
serde_qs = "0.12"
thiserror = "1"
base64 = "0.21"
lazy_static = "1.4"
lazy_static = "1"
futures = { version = "0.3", optional = true }
glob = { version = "0.3", optional = true }
tracing = "0.1.40"
dashmap = "5.5.3"
tracing = { version = "0.1", optional = true }
dashmap = { version = "5", optional = true }

[features]
ssr = [
"leptos_router/ssr", "leptos_meta/ssr" , "leptos/ssr",
"dep:webp", "dep:image",
"dep:tokio", "dep:axum", "dep:tower", "dep:tower-http",
"dep:futures", "dep:glob",
"dep:futures", "dep:glob", "dep:tracing", "dep:dashmap"
]
hydrate = [ "dep:web-sys","leptos/hydrate", "leptos_router/hydrate" ]

Expand Down

0 comments on commit 3d37522

Please sign in to comment.