Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Oct 14, 2022
1 parent c7395d6 commit aad0b1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hypher"
version = "0.1.0"
version = "0.1.1"
authors = ["Laurenz <[email protected]>"]
edition = "2021"
description = "hypher separates words into syllables."
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ added:
[dependencies]
hypher = { version = "0.1", default-features = false, features = ["english", "greek"] }
```

Each language added individually contributes:

| Language | Space |
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ assert_eq!(syllables.next(), None);
/*!
# Languages
By default, this crate supports hyphenating more than 30 languages. Embedding
automata for all these languages will add ~1.1 MB to your binary. Alternatively,
you can selectively enable individual languages. For example, you can embed just
english as shown below and then only 27 KB will be added to your binary.
automata for all these languages will add ~1.1 MiB to your binary. Alternatively,
you can disable support for all languages and manually choose which ones get
added:
```toml
[dependencies]
hypher = { version = "0.1", default-features = false, features = ["english"] }
hypher = { version = "0.1", default-features = false, features = ["english", "greek"] }
```
*/

Expand Down

0 comments on commit aad0b1a

Please sign in to comment.