diff --git a/Cargo.lock b/Cargo.lock index 647cafd4..5f50a402 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2261,9 +2261,9 @@ dependencies = [ [[package]] name = "rust_decimal_macros" -version = "1.34.2" +version = "1.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e418701588729bef95e7a655f2b483ad64bb97c46e8e79fde83efd92aaab6d82" +checksum = "a05bf7103af0797dbce0667c471946b29b9eaea34652eff67324f360fec027de" dependencies = [ "quote", "rust_decimal", @@ -2714,22 +2714,21 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.38.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", - "num_cpus", "pin-project-lite", "tokio-macros", ] [[package]] name = "tokio-macros" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 8bad0f93..98c3442f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,11 +19,10 @@ dead_code = "allow" missing_docs = "warn" [workspace.lints.clippy] -pedantic = "warn" -complexity = "warn" -nursery = "warn" +pedantic = {level = "warn", priority = -1} +complexity = {level = "warn", priority = -1} +nursery = {level = "warn", priority = -1} -absolute_paths = "warn" assertions_on_result_states = "warn" clone_on_ref_ptr = "warn" dbg_macro = "warn" @@ -49,6 +48,7 @@ unneeded_field_pattern = "warn" unwrap_in_result = "warn" wildcard_dependencies = "warn" redundant_feature_names = "warn" +renamed_function_params = "warn" too_many_lines = { level = "allow", priority = 1 } module_name_repetitions = { level = "allow", priority = 1 } diff --git a/builder/Cargo.toml b/builder/Cargo.toml index 64869dac..2040eb53 100644 --- a/builder/Cargo.toml +++ b/builder/Cargo.toml @@ -24,7 +24,7 @@ ron = "0.8.1" log = "0.4.22" im = { version = "15.1.0", features = ["serde"] } rust_decimal = "1.35.0" -rust_decimal_macros = "1.34.2" +rust_decimal_macros = "1.35.0" [dev-dependencies] builder = { path = ".", features = ["debug"] } diff --git a/editor/Cargo.toml b/editor/Cargo.toml index 83107eb9..f1bdf2dd 100644 --- a/editor/Cargo.toml +++ b/editor/Cargo.toml @@ -21,7 +21,7 @@ ui = { path = "../ui/" } roc = "0.0.0" serde = { version = "1.0.204" } iced = { version = "0.12.1", features = ["tokio"] } -tokio = { version = "1.38.0", features = ["fs", "io-util", "macros", "rt"] } +tokio = { version = "1.39.2", features = ["fs", "io-util", "macros", "rt"] } ron = { version = "0.8.1" } iced_aw = { version = "0.9.3", default-features = false, features = [ "tabs",