Skip to content

Commit

Permalink
Add missing feature to serde in http-request(-builder) examples (#710)
Browse files Browse the repository at this point in the history
Add missing feature to serde
  • Loading branch information
lukechu10 authored Oct 1, 2024
1 parent b8bea51 commit 231c057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/http-request-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
console_error_panic_hook = "0.1.7"
gloo-net = { version = "0.6.0", features = ["http"] }
serde = "1.0.147"
serde = { version = "1.0.147", features = ["derive"] }
sycamore = { path = "../../packages/sycamore", features = ["suspense"] }
2 changes: 1 addition & 1 deletion examples/http-request/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
console_error_panic_hook = "0.1.7"
gloo-net = { version = "0.6.0", features = ["http"] }
serde = "1.0.147"
serde = { version = "1.0.147", features = ["derive"] }
sycamore = { path = "../../packages/sycamore", features = ["suspense"] }

0 comments on commit 231c057

Please sign in to comment.