Skip to content

Commit 216e21c

Browse files
committed
mention the features in the README
1 parent 30fac9d commit 216e21c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
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.5.0"
7+
version = "0.6.0"
88
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
99

1010
[features]

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ code.
1010

1111
The name "ena" comes from the Greek word for "one".
1212

13+
### Features
14+
15+
By default, you just get the union-find implementation. You can
16+
also opt-in to the following experimental features:
17+
18+
- `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`).
22+
1323
### License
1424

1525
Like rustc itself, this code is dual-licensed under the MIT and Apache

0 commit comments

Comments
 (0)