Commit Graph

799 Commits

Author SHA1 Message Date
Alex Crichton aadcbef4ba Merge pull request #58 from mbrubeck/nightly
Update to build with Rust 1.0.0-nightly
2015-02-03 14:36:49 -06:00
Matt Brubeck e68ea18edc Silence unstable feature warnings 2015-02-03 12:32:28 -08:00
Matt Brubeck 42edb63090 Update FromStr and FromStrRadix to return Result
Fixes build errors with Rust 1.0.0-nightly.
2015-02-03 12:31:10 -08:00
Matt Brubeck b324415930 Change Show to Debug
Fixes deprecation warning
2015-02-03 11:05:55 -08:00
Huon Wilson 14082ffb48 Bump to 0.1.11. 2015-02-02 12:22:57 +11:00
Gulshan Singh 7ba31bc3a7 Implemented from_bytes and to_bytes 2015-02-01 20:17:34 -05:00
Alex Crichton c05cd530db Bump to 0.1.10 2015-01-23 08:54:55 -08:00
Alex Crichton 51b94c5e2e Merge pull request #55 from gifnksm/patch-1
Bump to 0.1.9
2015-01-21 09:31:17 -06:00
NAKASHIMA, Makoto 5e49142e64 Bump to 0.1.9 2015-01-21 22:55:10 +09:00
Alex Crichton 8eb924340f Merge pull request #53 from gsingh93/master
Fixed some typos and added some examples
2015-01-21 00:58:05 -06:00
Gulshan Singh f1bfd76bbb Fixed some typos and added some examples 2015-01-20 19:25:02 -05:00
Alex Crichton f186a5b71f Merge pull request #52 from renato-zannon/rename-mod
Rename BigDigit module to big_digit
2015-01-20 13:27:47 -06:00
Renato Zannon 791264ddfc Rename BigDigit module to big_digit
Without this rename, the library fails to compile on Rust master, since rust-lang/rust#21269 has landed.
2015-01-20 17:17:43 -02:00
Alex Crichton bde434903d Merge pull request #47 from jbcrail/fix-deprecated-range
Remove range function.
2015-01-12 11:02:46 -06:00
Alex Crichton e4135528e8 Merge pull request #46 from jbcrail/fix-deprecated-int
Replace deprecated int references with i32/isize.
2015-01-12 11:02:34 -06:00
Joseph Crail d196c2b818 Remove range function.
For the pi benchmark, I replaced the range function with the new range
syntax.
2015-01-11 23:54:25 -05:00
Joseph Crail c42680d21e Replace deprecated int references with i32/isize.
I replaced most int refs with i32, and I used isize to hold the number
of default digits.
2015-01-11 23:51:02 -05:00
Alex Crichton cbf04cf664 Bump to 0.1.8 2015-01-09 14:02:01 -08:00
Alex Crichton 45f5cc39bd s/bigusize/biguint/ 2015-01-09 13:54:32 -08:00
Huon Wilson 139cf8cf66 Bump to 0.1.7. 2015-01-09 22:36:03 +11:00
Alex Crichton bfa91ee92a Bump to 0.1.6 2015-01-07 12:09:44 -08:00
Alex Crichton 431dd18aff Bump version number 2015-01-04 10:57:00 -08:00
Alex Crichton c1ad386c08 Merge pull request #45 from gifnksm/master
update to rust mater
2015-01-04 12:57:33 -06:00
gifnksm 8219095e39 update to rust mater 2015-01-05 01:59:44 +09:00
Alex Crichton ce93a10ed0 Finish update and bump version number 2015-01-03 13:52:06 -08:00
Sven Nilsen ae3bb3619c Upgrade to latest Rust
A `_0` test fails, but don’t know why
2015-01-03 19:30:05 +01:00
Alex Crichton 522c97f3b8 Update travis config 2015-01-01 22:09:50 -08:00
Alex Crichton c11ff27994 Update to rust master 2015-01-01 09:07:52 -08:00
Alex Crichton 82d44da2d7 Update documentation links 2014-12-23 09:54:56 -08:00
Alex Crichton 5d4b921537 Fix build warnings 2014-12-23 09:51:08 -08:00
Alex Crichton e0e63cf241 Merge pull request #43 from zsiciarz/master
Update to latest rustc
2014-12-23 11:45:00 -06:00
Zbigniew Siciarz a006968185 Fix Ordering import 2014-12-23 17:12:57 +01:00
Zbigniew Siciarz 22c50901ff Convert Result to Option in parse_bytes.
`str::from_utf8` changed its return type to `Result`, but
`num::FromStrRadix::from_str_radix` still returns an `Option`. In this case
discarding the `Err` variant with `ok()` seems fine to me.
2014-12-23 17:09:22 +01:00
Alex Crichton f95afeb57e Bump version number 2014-12-22 09:21:37 -08:00
Alex Crichton 62f37e35de Merge pull request #42 from gifnksm/master
update to latest rustc
2014-12-21 11:34:41 -06:00
gifnksm 9316be3bc1 update to latest rustc 2014-12-21 19:41:03 +09:00
Alex Crichton 146410c918 Merge pull request #41 from code0100fun/master
Add semicolons to macro lines
2014-12-19 10:06:17 -06:00
Chase McCarthy a7e9e79049 Add semicolons to macro lines 2014-12-18 21:01:24 -05:00
Alex Crichton 5f829e7fd3 Bump version number 2014-12-16 12:45:29 -08:00
Alex Crichton 9428f0f100 Merge pull request #40 from gifnksm/master
update to latest rustc
2014-12-16 10:37:52 -05:00
gifnksm a325a566c6 update to latest rustc
Now, arithmetic binary operator traits take operands by value,
but non-copyable types such as `BigUint` should not always moved out when
applying operators.

This commit implements these operators not only for bare structs also
these references.
By-value implementations are forwarded to by-reference implementations
for now. In the future, by-value implementations may be replaced with
more efficient implementations (for example, the implementation that
reuses moved buffers.)
2014-12-16 23:44:16 +09:00
Alex Crichton 32ae02d87d Bump version number 2014-12-13 11:08:51 -08:00
Alex Crichton d6d668bf30 Merge pull request #38 from gifnksm/master
Add `deriving(Copy)` for `Copy`able structs/enums
2014-12-09 10:13:07 -05:00
gifnksm 1533fe2017 fix deperecation warning 2014-12-09 23:48:37 +09:00
gifnksm d89fbbf044 Add `deriving(Copy)` for `Copy`able structs/enums/ 2014-12-09 23:46:39 +09:00
Alex Crichton 01cc022174 Merge pull request #36 from steveklabnik/license
remove license attribute
2014-12-07 20:48:25 -05:00
Alex Crichton a237157629 Merge pull request #37 from steveklabnik/deprecated
don't allow deprecated items.
2014-12-07 20:48:18 -05:00
Steve Klabnik 253f0bd3f3 don't allow deprecated items.
We don't actually use any.
2014-12-07 13:22:01 -05:00
Steve Klabnik ecc2e5fab7 remove license attribute 2014-12-07 13:20:39 -05:00
Huon Wilson 16787045e5 Bump to 0.0.5. 2014-11-28 22:20:21 +11:00