diff --git a/Cargo.lock b/Cargo.lock index d698311..3595842 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,18 +172,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.206" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284" +checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.206" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97" +checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf" dependencies = [ "proc-macro2", "quote", diff --git a/example/Cargo.toml b/example/Cargo.toml index 518710a..5a15557 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" [dependencies] shopify_function = { path = "../shopify_function" } -serde = { version = "1.0.206", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0" graphql_client = "0.14.0" graphql_client_codegen = "0.14.0" diff --git a/example_with_targets/Cargo.toml b/example_with_targets/Cargo.toml index 8188f04..d3a5b6d 100644 --- a/example_with_targets/Cargo.toml +++ b/example_with_targets/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" [dependencies] shopify_function = { path = "../shopify_function" } -serde = { version = "1.0.206", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0" graphql_client = "0.14.0" graphql_client_codegen = "0.14.0" diff --git a/shopify_function/Cargo.toml b/shopify_function/Cargo.toml index d4027a6..eab168d 100644 --- a/shopify_function/Cargo.toml +++ b/shopify_function/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" description = "Crate to write Shopify Functions in Rust." [dependencies] -serde = { version = "1.0.206", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0" shopify_function_macro = { version = "0.8.0", path = "../shopify_function_macro" }