From 7e79cb47739f1600493b1a3ed8695ed58f526c44 Mon Sep 17 00:00:00 2001 From: rickwebiii Date: Wed, 13 Aug 2025 16:25:21 -0700 Subject: [PATCH 1/4] Bump num_traits --- Cargo.toml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3e9b539..752bd03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "data-structures", "science", "no-std"] license = "MIT OR Apache-2.0" name = "num-rational" repository = "https://github.com/rust-num/num-rational" -version = "0.4.2" +version = "0.4.3" readme = "README.md" exclude = ["/ci/*", "/.github/*"] edition = "2021" @@ -25,12 +25,12 @@ version = "0.4.0" default-features = false [dependencies.num-integer] -version = "0.1.42" +version = "0.1.47" default-features = false features = ["i128"] [dependencies.num-traits] -version = "0.2.18" +version = "0.3.0" default-features = false features = ["i128"] @@ -45,3 +45,10 @@ std = ["num-bigint?/std", "num-integer/std", "num-traits/std"] num-bigint-std = ["num-bigint/std"] num-bigint = ["dep:num-bigint"] serde = ["dep:serde"] + + +[patch.crates-io] +num-bigint = { git = "https://github.com/rickwebiii/num-bigint.git", branch = "rweber/wrapping" } +num-traits = { git = "https://github.com/rickwebiii/num-traits.git", branch = "rweber/wrapping" } +num-integer = { git = "https://github.com/rickwebiii/num-integer.git", branch = "rweber/wrapping" } + From 4633da57192a71b37aa0a26159f755895d27111e Mon Sep 17 00:00:00 2001 From: rickwebiii Date: Wed, 13 Aug 2025 16:48:21 -0700 Subject: [PATCH 2/4] Fix semver --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 752bd03..b10cd53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "data-structures", "science", "no-std"] license = "MIT OR Apache-2.0" name = "num-rational" repository = "https://github.com/rust-num/num-rational" -version = "0.4.3" +version = "0.5.0" readme = "README.md" exclude = ["/ci/*", "/.github/*"] edition = "2021" From ac810ddb1604ff385431baf1f6b0df1242113241 Mon Sep 17 00:00:00 2001 From: rickwebiii Date: Wed, 13 Aug 2025 16:55:42 -0700 Subject: [PATCH 3/4] Bump semver --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b10cd53..84ec2bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ version = "0.4.0" default-features = false [dependencies.num-integer] -version = "0.1.47" +version = "0.2.0" default-features = false features = ["i128"] From fd1413571241378ffe3991ffda943e3dd36a5966 Mon Sep 17 00:00:00 2001 From: rickwebiii Date: Wed, 13 Aug 2025 17:00:29 -0700 Subject: [PATCH 4/4] Bump --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 84ec2bd..8f5ad65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ features = ["std", "num-bigint-std", "serde"] [dependencies.num-bigint] optional = true -version = "0.4.0" +version = "0.5.0" default-features = false [dependencies.num-integer]