Skip to content

Commit 47537e7

Browse files
chore: enable ohh feature by default (#272)
1 parent ccb012a commit 47537e7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ rs-poker is a Rust poker library
4949
### Feature Flags
5050

5151
```toml
52-
default = ["arena", "serde", "omaha"]
52+
default = ["arena", "serde", "omaha", "open-hand-history"]
5353
arena # Multi-agent simulation
5454
serde # JSON serialization
5555
omaha # Omaha (PLO4/PLO5/PLO6/PLO7) hand evaluation
56-
arena-test-util # Testing helpers with approx comparisons
5756
open-hand-history # OHH format support
57+
arena-test-util # Testing helpers with approx comparisons
5858
open-hand-history-test-util # OHH testing helpers
5959
```
6060

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tikv-jemallocator = { version = "~0.6.0", optional = true, features = [
5454
] }
5555

5656
[features]
57-
default = ["arena", "serde", "omaha"]
57+
default = ["arena", "serde", "omaha", "open-hand-history"]
5858
omaha = []
5959
serde = ["dep:serde", "dep:serde_json"]
6060
arena = [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ Avoids the O(N!) complexity of traditional ICM by simulating all-in confrontatio
283283
| `arena` | Yes | Multi-agent simulation framework, CFR solver |
284284
| `serde` | Yes | JSON serialization for hands, game states, configs |
285285
| `omaha` | Yes | Omaha (PLO4/PLO5/PLO6/PLO7) hand evaluation |
286+
| `open-hand-history` | Yes | Open Hand History format import/export |
286287
| `rsp` | No | CLI binary with all features enabled |
287-
| `open-hand-history` | No | Open Hand History format import/export |
288288
| `arena-test-util` | No | Approximate comparison helpers for tests |
289289
| `open-hand-history-test-util` | No | OHH format testing helpers |
290290

0 commit comments

Comments
 (0)