Skip to content

Commit

Permalink
Make serde_json a mandatory dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottslaughter committed Jun 19, 2023
1 parent 590aaea commit d5e7f13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ rust-version = "1.67"

[features]
default = []
client = ["dep:serde_json", "dep:reqwest", "dep:url"]
server = ["dep:actix-cors", "dep:actix-web", "dep:serde_json"]
client = ["dep:reqwest", "dep:url"]
server = ["dep:actix-cors", "dep:actix-web"]

[dependencies]
egui = "0.22.0"
Expand All @@ -21,7 +21,7 @@ eframe = { version = "0.22.0", default-features = false, features = [
log = "0.4"

serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", optional = true }
serde_json = { version = "1" }

rand = { version = "0.8" }
# transitive depedency, required for rand to support wasm
Expand Down

0 comments on commit d5e7f13

Please sign in to comment.