From 874b9114a4442b4f4684ecd9633ccb231c2e00cc Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Wed, 29 Apr 2026 20:32:55 -0400 Subject: [PATCH 1/2] Add dependencies from `literal` crate to main workspace --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 053e39218ea..3262749b72c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -189,11 +189,13 @@ flame = "0.2.2" getrandom = { version = "0.3", features = ["std"] } glob = "0.3" hex = "0.4.3" +hexf-parse = "0.2.1" indexmap = { version = "2.14.0", features = ["std"] } insta = "1.47" itertools = "0.14.0" is-macro = "0.3.7" junction = "1.4.2" +lexical-parse-float = "1.0.6" libc = "0.2.186" libffi = "5" log = "0.4.29" From af4f36eaf638aa484f971b68e326ae48259d54ab Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Wed, 29 Apr 2026 20:33:11 -0400 Subject: [PATCH 2/2] Declare dependencies as workspace = true --- crates/literal/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/literal/Cargo.toml b/crates/literal/Cargo.toml index 3f0bec33c30..b9795a771eb 100644 --- a/crates/literal/Cargo.toml +++ b/crates/literal/Cargo.toml @@ -11,9 +11,9 @@ rust-version = { workspace = true } [dependencies] rustpython-wtf8 = { workspace = true } -hexf-parse = "0.2.1" +hexf-parse = { workspace = true } is-macro.workspace = true -lexical-parse-float = { version = "1.0.6", features = ["format"] } +lexical-parse-float = { workspace = true, features = ["format"] } num-traits = { workspace = true } icu_properties = { workspace = true }