Skip to content

Commit

Permalink
dont version extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Mar 28, 2024
1 parent e8491d5 commit c483abe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ generational-box = { path = "packages/generational-box", version = "0.5.0-alpha.
dioxus-hot-reload = { path = "packages/hot-reload", version = "0.5.0-alpha.2" }
dioxus-fullstack = { path = "packages/fullstack", version = "0.5.0-alpha.2" }
dioxus_server_macro = { path = "packages/server-macro", version = "0.5.0-alpha.2", default-features = false }
dioxus-ext = { path = "packages/extension", version = "0.4.0" }
dioxus-ext = { path = "packages/extension" }
tracing = "0.1.37"
tracing-futures = "0.2.5"
toml = "0.8"
Expand Down Expand Up @@ -175,7 +175,7 @@ tokio = { version = "1.16.1", default-features = false, features = [
"macros",
"io-util",
"rt",
"time",
"time"
] }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
Expand All @@ -184,15 +184,16 @@ tokio = { version = "1.16.1", features = ["full"] }
# To make most examples faster to compile, we split out assets and http-related stuff
# This trims off like 270 dependencies, leading to a significant speedup in compilation time
[features]
default = ["dioxus/desktop"]
liveview = ["dioxus/liveview"]
fullstack = ["dioxus/fullstack"]
axum = ["dioxus/axum"]
server = ["dioxus/axum"]
default = ["dioxus/desktop"]
web = ["dioxus/web"]
collect-assets = ["manganis"]
http = ["reqwest", "http-range"]


[[example]]
name = "login_form"
required-features = ["http"]
Expand Down

0 comments on commit c483abe

Please sign in to comment.