Skip to content

Commit

Permalink
Fix warning while building CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcharles committed Oct 29, 2024
1 parent 647b779 commit ab9a99f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ once_cell = "1.20"
javy = { path = "crates/javy", version = "3.1.0-alpha.1" }
tempfile = "3.13.0"
uuid = { version = "1.10", features = ["v4"] }
serde = "1.0"
serde = { version = "1.0", default-features = false }
serde_json = "1.0"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion crates/javy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = { workspace = true }
rquickjs = { version = "=0.6.1", features = ["array-buffer", "bindgen"] }
rquickjs-core = "=0.6.1"
rquickjs-sys = "=0.6.1"
serde = { workspace = true, features = ["derive"] }
serde = { workspace = true, default-features = true, features = ["derive"] }
serde_json = { workspace = true, optional = true }
serde-transcode = { version = "1.1", optional = true }
rmp-serde = { version = "^1.3", optional = true }
Expand Down

0 comments on commit ab9a99f

Please sign in to comment.