Skip to content

Commit e517e14

Browse files
authored
Merge pull request #7 from rust-lang-nursery/ndm-release-0.9.0
bump to 0.9.0 and update README
2 parents 52cd081 + 00536c7 commit e517e14

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Union-find, congruence closure, and other unification code. Based
44
license = "MIT/Apache-2.0"
55
homepage = "https://github.com/nikomatsakis/ena"
66
repository = "https://github.com/nikomatsakis/ena"
7-
version = "0.8.0"
7+
version = "0.9.0"
88
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
99
readme = "README.md"
1010
keywords = ["unification", "union-find"]

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
[![Build Status](https://travis-ci.org/nikomatsakis/ena.svg?branch=master)](https://travis-ci.org/nikomatsakis/ena)
22

3-
An implementation of union-find / congruence-closure in Rust. Forked
4-
from rustc for independent experimentation. My intention is to iterate
5-
and improve this code and gradually bring back changes into rustc
6-
itself, but also to enable other crates.io packages to use the same
7-
code.
3+
An implementation of union-find in Rust; extracted from (and used by)
4+
rustc.
85

96
### Name
107

118
The name "ena" comes from the Greek word for "one".
129

1310
### Features
1411

15-
By default, you just get the union-find implementation. You can
16-
also opt-in to the following experimental features:
12+
By default, you just get the union-find implementation. You can also
13+
opt-in to the following experimental features:
1714

1815
- `bench`: use to run benchmarks (`cargo bench --features bench`)
19-
- `congruence-closure`: opt-in to the congruence closure
20-
implementation. This requires petgraph and is nightly only (since
21-
it uses `impl Trait`).
2216

2317
### License
2418

0 commit comments

Comments
 (0)