Skip to content

Commit 0329480

Browse files
committed
Unfork
1 parent 0506918 commit 0329480

File tree

2 files changed

+6
-17
lines changed

2 files changed

+6
-17
lines changed

Cargo.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
[package]
2-
name = "new-ordered-float"
3-
version = "1.0.1"
2+
name = "ordered-float"
3+
version = "1.0.0"
44
authors = ["Jonathan Reem <jonathan.reem@gmail.com>", "Matt Brubeck <mbrubeck@limpet.net>"]
55
license = "MIT"
6-
description = "Wrappers for total ordering on floats (fork of ordered-float)"
7-
repository = "https://github.com/mbrubeck/rust-ordered-float"
6+
description = "Wrappers for total ordering on floats"
7+
repository = "https://github.com/reem/rust-ordered-float"
88
readme = "README.md"
99

10-
[lib]
11-
name = "ordered_float"
12-
1310
[dependencies]
1411
num-traits = "0.2"
1512
serde = { version = "1.0", optional = true }

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,17 @@
22

33
Provides several wrapper types for Ord and Eq implementations on f64.
44

5-
This is a fork of https://crates.io/crates/ordered-float
6-
75
## Usage
86

97
Use the crates.io repository; add this to your `Cargo.toml` along
108
with the rest of your dependencies:
119

1210
```toml
1311
[dependencies]
14-
new-ordered-float = "1.0"
15-
```
16-
17-
In your Rust code, the library name is still `ordered_float`:
18-
19-
```rust
20-
extern crate ordered_float;
12+
ordered-float = "1.0"
2113
```
2214

23-
See the [API documentation](https://docs.rs/new-ordered-float) for further details.
15+
See the [API documentation](https://docs.rs/ordered-float) for further details.
2416

2517
## License
2618

0 commit comments

Comments
 (0)