Skip to content

Commit

Permalink
Eliminate default features for JSON samples (microsoft#3012)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored and mati865 committed Jun 15, 2024
1 parent 54145a4 commit d1aa84d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/samples/components/json_validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
jsonschema = "0.17"
serde_json = "1.0"
jsonschema = { version = "0.17", default-features = false }
serde_json = {version = "1.0", default-features = false }

[dependencies.windows]
path = "../../../libs/windows"
Expand Down
4 changes: 2 additions & 2 deletions crates/samples/components/json_validator_winrt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ name = "sample"
crate-type = ["cdylib"]

[dependencies]
jsonschema = "0.17"
serde_json = "1.0"
jsonschema = { version = "0.17", default-features = false }
serde_json = {version = "1.0", default-features = false }

[dependencies.windows]
path = "../../../libs/windows"
Expand Down

0 comments on commit d1aa84d

Please sign in to comment.