Eliminate default features for JSON samples (#3012)

This commit is contained in:
Kenny Kerr 2024-04-29 09:53:48 -05:00 коммит произвёл GitHub
Родитель f850dcbf64
Коммит 4fcb8d78ff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"