diff --git a/Cargo.lock b/Cargo.lock index 8df8f317..425e74ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -437,7 +437,7 @@ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "malachite" -version = "0.5.1" +version = "0.5.0" dependencies = [ "embed-doc-image", "malachite-base", @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "malachite-base" -version = "0.5.1" +version = "0.5.0" dependencies = [ "clap", "getrandom", @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "malachite-bigint" -version = "0.5.1" +version = "0.5.0" dependencies = [ "derive_more", "malachite-base", @@ -482,7 +482,7 @@ dependencies = [ [[package]] name = "malachite-criterion-bench" -version = "0.5.1" +version = "0.5.0" dependencies = [ "criterion", "malachite-base", @@ -493,7 +493,7 @@ dependencies = [ [[package]] name = "malachite-float" -version = "0.5.1" +version = "0.5.0" dependencies = [ "itertools 0.11.0", "malachite-base", @@ -508,7 +508,7 @@ dependencies = [ [[package]] name = "malachite-nz" -version = "0.5.1" +version = "0.5.0" dependencies = [ "embed-doc-image", "indoc", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "malachite-q" -version = "0.5.1" +version = "0.5.0" dependencies = [ "itertools 0.11.0", "malachite-base", diff --git a/Cargo.toml b/Cargo.toml index f7e771d4..3da4cab9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" rust-version = "1.83.0" [workspace.dependencies] -malachite-base = { version = "0.5.1", path = 'malachite-base' } -malachite-nz = { version = "0.5.1", path = 'malachite-nz', default_features = false } -malachite-q = { version = "0.5.1", path = 'malachite-q' } -malachite-float = { version = "0.5.1", path = 'malachite-float' } +malachite-base = { version = "0.5.0", path = 'malachite-base' } +malachite-nz = { version = "0.5.0", path = 'malachite-nz', default_features = false } +malachite-q = { version = "0.5.0", path = 'malachite-q' } +malachite-float = { version = "0.5.0", path = 'malachite-float' } [profile.release] lto = "fat" diff --git a/docs/index.md b/docs/index.md index 0bcaed55..26fac27c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,14 +55,14 @@ Malachite uses `no_std`, unless the `random`, `test_build`, or `bin_build` featu To use Malachite, add the following to your project's `Cargo.toml` file: ```yaml [dependencies.malachite] -version = "0.5.1" +version = "0.5.0" ``` By default, all of Malachite's features are included, but you can opt out of some of them. For example, if you want to use `Natural` and `Integer` but not `Rational`, you can instead use ```yaml [dependencies.malachite] -version = "0.5.1" +version = "0.5.0" default-features = false features = [ "naturals_and_integers" ] ``` diff --git a/malachite-base/Cargo.toml b/malachite-base/Cargo.toml index 4923d209..9311aa8a 100644 --- a/malachite-base/Cargo.toml +++ b/malachite-base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite-base" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] rust-version.workspace = true edition.workspace = true diff --git a/malachite-bigint/Cargo.toml b/malachite-bigint/Cargo.toml index e6bfc7f8..1c3a6f4d 100644 --- a/malachite-bigint/Cargo.toml +++ b/malachite-bigint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite-bigint" -version = "0.5.1" +version = "0.5.0" authors = ["Steve Shi "] rust-version.workspace = true edition.workspace = true @@ -9,8 +9,8 @@ description = "A drop-in num-bigint replacement based on malachite" repository = "https://github.com/mhogrefe/malachite" [dependencies] -malachite-base = { version = "0.5.1", path = "../malachite-base" } -malachite-nz = { version = "0.5.1", path = "../malachite-nz" } +malachite-base = { version = "0.5.0", path = "../malachite-base" } +malachite-nz = { version = "0.5.0", path = "../malachite-nz" } num-traits = { version = "0.2.19", default-features = false, features = ["i128"] } num-integer = { version = "0.1.46", default-features = false, features = ["i128"] } diff --git a/malachite-criterion-bench/Cargo.toml b/malachite-criterion-bench/Cargo.toml index 5b3530f1..e16aca9f 100644 --- a/malachite-criterion-bench/Cargo.toml +++ b/malachite-criterion-bench/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "malachite-criterion-bench" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] autobenches = false rust-version.workspace = true edition.workspace = true [dependencies] -malachite-base = { version = "0.5.1", path = "../malachite-base" } -malachite-nz = { version = "0.5.1", default-features = false, path = "../malachite-nz" } +malachite-base = { version = "0.5.0", path = "../malachite-base" } +malachite-nz = { version = "0.5.0", default-features = false, path = "../malachite-nz" } num = "0.4.1" rug = { version = "1.21.0", default-features = false, features = ["integer", "serde"] } diff --git a/malachite-float/Cargo.toml b/malachite-float/Cargo.toml index 470ff8f6..1fae22f9 100644 --- a/malachite-float/Cargo.toml +++ b/malachite-float/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite-float" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] rust-version.workspace = true edition.workspace = true @@ -22,9 +22,9 @@ path = "src/bin.rs" [dependencies] itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] } -malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" } -malachite-nz = { version = "0.5.1", default-features = false, features = ["float_helpers"], path = "../malachite-nz" } -malachite-q = { version = "0.5.1", default-features = false, path = "../malachite-q" } +malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" } +malachite-nz = { version = "0.5.0", default-features = false, features = ["float_helpers"], path = "../malachite-nz" } +malachite-q = { version = "0.5.0", default-features = false, path = "../malachite-q" } serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] } serde_json = { version = "1.0.105", optional = true } diff --git a/malachite-nz/Cargo.toml b/malachite-nz/Cargo.toml index 3afa5c47..c28c0750 100644 --- a/malachite-nz/Cargo.toml +++ b/malachite-nz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite-nz" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] rust-version.workspace = true edition.workspace = true @@ -23,7 +23,7 @@ path = "src/bin.rs" [dependencies] itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] } libm = { version = "0.2.8", default-features = false } -malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" } +malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" } serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] } indoc = { version = "2.0.4", optional = true} diff --git a/malachite-q/Cargo.toml b/malachite-q/Cargo.toml index 6512fb5d..33cfd70b 100644 --- a/malachite-q/Cargo.toml +++ b/malachite-q/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite-q" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] rust-version.workspace = true edition.workspace = true @@ -22,8 +22,8 @@ path = "src/bin.rs" [dependencies] itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] } -malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" } -malachite-nz = { version = "0.5.1", default-features = false, path = "../malachite-nz" } +malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" } +malachite-nz = { version = "0.5.0", default-features = false, path = "../malachite-nz" } serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] } serde_json = { version = "1.0.105", optional = true } diff --git a/malachite/Cargo.toml b/malachite/Cargo.toml index 7246c410..2ef8bee1 100644 --- a/malachite/Cargo.toml +++ b/malachite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "malachite" -version = "0.5.1" +version = "0.5.0" authors = ["Mikhail Hogrefe "] rust-version.workspace = true edition.workspace = true @@ -13,10 +13,10 @@ keywords = ["mathematics", "math", "numerics", "bignum"] categories = ["mathematics"] [dependencies] -malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" } -malachite-nz = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-nz" } -malachite-q = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-q" } -malachite-float = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-float" } +malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" } +malachite-nz = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-nz" } +malachite-q = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-q" } +malachite-float = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-float" } serde = { version = "1.0.188", optional = true, features = ["derive"] } embed-doc-image = { version = "0.1.4", optional = true }