diff --git a/Cargo.lock b/Cargo.lock index a83caed..acd42dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,18 +172,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", diff --git a/example/Cargo.toml b/example/Cargo.toml index f11df3b..e888259 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.215", features = ["derive"] } +serde = { version = "1.0.216", 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 cc1c7c3..1943470 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.215", features = ["derive"] } +serde = { version = "1.0.216", 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 29f5c51..8577bf1 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.215", features = ["derive"] } +serde = { version = "1.0.216", features = ["derive"] } serde_json = "1.0" shopify_function_macro = { version = "0.8.1", path = "../shopify_function_macro" }