diff --git a/Cargo.lock b/Cargo.lock index 35d4df06a9..bb7a461f78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4365,9 +4365,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.139" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0171ebb889e45aa68b44aee0859b3eede84c6f5f5c228e6f140c0b2a0a46cad6" +checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" dependencies = [ "serde_derive", ] @@ -4405,9 +4405,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.139" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1d3230c1de7932af58ad8ffbe1d784bd55efd5a9d84ac24f69c72d83543dfb" +checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" dependencies = [ "proc-macro2", "quote", diff --git a/crates/code_markup/Cargo.toml b/crates/code_markup/Cargo.toml index f3f2f170a2..1f6c9652fd 100644 --- a/crates/code_markup/Cargo.toml +++ b/crates/code_markup/Cargo.toml @@ -10,7 +10,7 @@ description = "Our own markup language for Roc code. Used by the editor and the roc_ast = { path = "../ast" } roc_module = { path = "../compiler/module" } roc_utils = { path = "../utils" } -serde = { version = "1.0.130", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } palette = "0.6.1" snafu = { version = "0.7.1", features = ["backtraces"] } bumpalo = { version = "3.8.0", features = ["collections"] } diff --git a/crates/editor/Cargo.toml b/crates/editor/Cargo.toml index 5d287d286a..5fd3d195f0 100644 --- a/crates/editor/Cargo.toml +++ b/crates/editor/Cargo.toml @@ -54,7 +54,7 @@ palette = "0.6.1" confy = { git = 'https://github.com/rust-cli/confy', features = [ "yaml_conf" ], default-features = false } -serde = { version = "1.0.130", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } nonempty = "0.8.0" fs_extra = "1.2.0" rodio = { version = "0.15.0", optional = true } # to play sounds diff --git a/crates/linker/Cargo.toml b/crates/linker/Cargo.toml index 33271e3245..38b34606cf 100644 --- a/crates/linker/Cargo.toml +++ b/crates/linker/Cargo.toml @@ -22,7 +22,7 @@ iced-x86 = { version = "1.15.0", default-features = false, features = ["std", "d memmap2 = "0.5.7" object = { version = "0.29.0", features = ["read", "write"] } mach_object = "0.1" -serde = { version = "1.0.130", features = ["derive"] } +serde = { version = "1.0.144", features = ["derive"] } bincode = "1.3.3" target-lexicon = "0.12.3" tempfile = "3.2.0"