diff --git a/Cargo.toml b/Cargo.toml index 68ac5686d44..e5bccb6d6e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -197,6 +197,7 @@ nix = { version = "0.30", features = ["fs", "user", "process", "term", "time", " malachite-bigint = "0.9.1" malachite-q = "0.9.1" malachite-base = "0.9.1" +maplit = "1.0.2" memchr = "2.8.0" num-complex = "0.4.6" num-integer = "0.1.46" @@ -221,6 +222,8 @@ static_assertions = "1.1" strum = "0.28" strum_macros = "0.28" syn = "2" +syn-ext = "0.5.0" +textwrap = { version = "0.16.2", default-features = false } thiserror = "2.0" icu_properties = "2" icu_normalizer = "2" diff --git a/crates/derive-impl/Cargo.toml b/crates/derive-impl/Cargo.toml index a772cab1d38..383bf229171 100644 --- a/crates/derive-impl/Cargo.toml +++ b/crates/derive-impl/Cargo.toml @@ -16,11 +16,11 @@ rustpython-doc = { workspace = true } itertools = { workspace = true } syn = { workspace = true, features = ["full", "extra-traits"] } -maplit = "1.0.2" +maplit = { workspace = true } proc-macro2 = { workspace = true } quote = { workspace = true } -syn-ext = { version = "0.5.0", features = ["full"] } -textwrap = { version = "0.16.1", default-features = false } +syn-ext = { workspace = true, features = ["full"] } +textwrap = { workspace = true, default-features = false } [lints] workspace = true