diff --git a/Cargo.lock b/Cargo.lock index cf9c481..c0902c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,18 +172,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.206" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.206" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", diff --git a/example/Cargo.toml b/example/Cargo.toml index 518710a..9fc9da6 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.209", 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..fa22b00 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.209", 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..09c8bb8 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.209", features = ["derive"] } serde_json = "1.0" shopify_function_macro = { version = "0.8.0", path = "../shopify_function_macro" }