Skip to content

Commit

Permalink
chore: remove ambiguity surrounding serde version numbers. (leptos-rs…
Browse files Browse the repository at this point in the history
…#1685)

These lint warnings.

warning: /home/martin/build/leptos/leptos/Cargo.toml: dependency (serde) specified without providing a local path, Git repository, version, or workspace dependency to use. This will be considered an error in future versions
warning: /home/martin/build/leptos/leptos/Cargo.toml: dependency (serde_json) specified without providing a local path, Git repository, version, or workspace dependency to use. This will be considered an error in future versions
  • Loading branch information
martinfrances107 authored Sep 9, 2023
1 parent 66dfef8 commit 929fe08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leptos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ leptos_config = { workspace = true }
tracing = "0.1"
typed-builder = "0.16"
typed-builder-macro = "0.16"
serde = { optional = true }
serde_json = { optional = true }
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
server_fn = { workspace = true }
web-sys = { version = "0.3.63", optional = true }
wasm-bindgen = { version = "0.2", optional = true }
Expand Down

0 comments on commit 929fe08

Please sign in to comment.