Codebase list rust-stfu8 / 02b346c
lexical-core: update to new upstream version to fix FTBFS. Peter Michael Green 2 years ago
8 changed file(s) with 73 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 rust-lexical-core (0.4.8-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package lexical-core 0.4.8 from crates.io using debcargo 2.4.4
4 + Fixes build with newer rustc ( Closes: 995915 )
5 * Reduce context for Cargo.toml in upgrade-static_assertions-to-1.patch so it
6 applies to the new upstream source without fuzz.
7 * Relax dependency on arrayvec.
8 * Disable proptest, quickcheck and property-tests features.
9 * Don't mark arrayvec as optional to avoid introducing a new binary package.
10
11 -- Peter Michael Green <plugwash@debian.org> Thu, 14 Oct 2021 08:56:50 +0000
12
013 rust-lexical-core (0.4.3-2) unstable; urgency=medium
114
215 * Upgraded dependency static_assertions to version 1
88
99 Files: debian/*
1010 Copyright:
11 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
11 2019-2021 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
1212 2019 kpcyrd <git@rxv.cc>
1313 License: MIT or Apache-2.0
1414
1313
1414 Files: debian/*
1515 Copyright:
16 2019-2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
17 2019-2020 kpcyrd <git@rxv.cc>
16 2019-2021 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
17 2019-2021 kpcyrd <git@rxv.cc>
1818 License: MIT or Apache-2.0
1919
2020 License: Apache-2.0
0 --- a/Cargo.toml 2021-10-14 08:31:07.934677028 +0000
1 +++ b/Cargo.toml 2021-10-14 09:00:05.052132958 +0000
2 @@ -43,3 +43,2 @@
3 features = ["array-sizes-33-128"]
4 -optional = true
5
6 @@ -64,5 +71,5 @@
7 [features]
8 -correct = ["arrayvec", "table"]
9 +correct = ["table"]
10 default = ["correct", "ryu", "std"]
11 grisu3 = ["dtoa"]
12 radix = []
0 Index: rust-lexical-core-0.4.8/Cargo.toml
1 ===================================================================
2 --- rust-lexical-core-0.4.8.orig/Cargo.toml
3 +++ rust-lexical-core-0.4.8/Cargo.toml
4 @@ -50,14 +50,6 @@ version = "0.1"
5 version = "0.4"
6 optional = true
7
8 -[dependencies.proptest]
9 -version = "0.9.4"
10 -optional = true
11 -
12 -[dependencies.quickcheck]
13 -version = "0.8.5"
14 -optional = true
15 -
16 [dependencies.ryu]
17 version = "^1.0"
18 optional = true
19 @@ -73,7 +65,6 @@ version = "0.2"
20 correct = ["arrayvec", "table"]
21 default = ["correct", "ryu", "std"]
22 grisu3 = ["dtoa"]
23 -property_tests = ["quickcheck", "proptest"]
24 radix = []
25 rounding = []
26 std = []
0 Index: lexical-core/Cargo.toml
1 ===================================================================
2 --- lexical-core.orig/Cargo.toml
3 +++ lexical-core/Cargo.toml
4 @@ -39,7 +39,7 @@ panic = "abort"
5 [lib]
6 crate-type = ["lib", "staticlib", "cdylib"]
7 [dependencies.arrayvec]
8 -version = "0.4"
9 +version = ">= 0.4,< 0.6"
10 features = ["array-sizes-33-128"]
11 optional = true
12
00 upgrade-static_assertions-to-1.patch
1 relax-dep.diff
2 disable-features.diff
3 arrayvec-not-optional.patch
00 --- a/Cargo.toml
11 +++ b/Cargo.toml
2 @@ -54,7 +54,7 @@
3 optional = true
4
2 @@ -56,3 +56,3 @@
53 [dependencies.static_assertions]
64 -version = "0.3.3"
75 +version = "1.1.0"
86 [dev-dependencies.approx]
9 version = "0.3.0"
10
117 --- a/src/atof/algorithm/small_powers.rs
128 +++ b/src/atof/algorithm/small_powers.rs
139 @@ -13,46 +13,46 @@