Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
docs: reorganize todos a tiny bit
Browse files Browse the repository at this point in the history
  • Loading branch information
bgeron committed Mar 6, 2020
1 parent 6b40b49 commit cdd5126
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ yet. Patches are welcome!

- Implement `std::fmt::{Binary, LowerHex, Octal, UpperHex}` (easy?)
- Implement `num_bigint::{ToBigInt, ToBigUint}`
- Unit tests. Currently there are none, although the code is sufficiently simple
that there is almost no place where bugs could hide.
- Make this compile against rust stable.

## Other traits and methods still to be implemented:

Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
//!
//! - Implement `std::fmt::{Binary, LowerHex, Octal, UpperHex}` (easy?)
//! - Implement `num_bigint::{ToBigInt, ToBigUint}`
//! - Unit tests. Currently there are none, although the code is sufficiently simple
//! that there is almost no place where bugs could hide.
//! - Make this compile against rust stable.
//!
//! ## Other traits and methods still to be implemented:
//!
Expand All @@ -35,6 +32,9 @@
//! ## Not done and seems hard:
//!
//! - [`num_traits::pow::Pow`]
//!
//! There aren't super many unit tests currently, but the code is sufficiently
//! simple that there is not much space where bugs could hide.
use either::{Either, Left, Right};
use num_bigint::{BigInt, BigUint, ParseBigIntError, ToBigUint};
Expand Down

0 comments on commit cdd5126

Please sign in to comment.