forked from lifthrasiir/rust-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reduced the size of index tables a bit, and some optional features.
This also marks the beginning of the 0.3 development branch. The documentation won't be synchronized from now on to 0.3.0. - `no-optimized-legacy-encoding` Cargo feature can be used to cut most of backward mapping tables at the expense of encoding performance (1/3 size vs. 5--20x slower). - Very, very slightly `rustfmt`ed the library code. `Makefile` has been changed as a result.
- Loading branch information
1 parent
1c0905d
commit 726d6da
Showing
46 changed files
with
18,972 additions
and
21,240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ Peter Atashian <[email protected]> | |
Pierre Baillet <[email protected]> | ||
Robert Straw <[email protected]> | ||
Simon Sapin <[email protected]> | ||
Simonas Kazlauskas <[email protected]> | ||
Son <[email protected]> | ||
Steve Klabnik <[email protected]> | ||
klutzy <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "encoding" | ||
version = "0.2.32" | ||
version = "0.3.0-dev" | ||
authors = ["Kang Seonghoon <[email protected]>"] | ||
|
||
description = "Character encoding support for Rust" | ||
|
@@ -14,6 +14,15 @@ license = "MIT" | |
[lib] | ||
name = "encoding" | ||
|
||
[features] | ||
no-optimized-legacy-encoding = [ | ||
"encoding-index-singlebyte/no-optimized-legacy-encoding", | ||
"encoding-index-korean/no-optimized-legacy-encoding", | ||
"encoding-index-japanese/no-optimized-legacy-encoding", | ||
"encoding-index-simpchinese/no-optimized-legacy-encoding", | ||
"encoding-index-tradchinese/no-optimized-legacy-encoding", | ||
] | ||
|
||
[dependencies.encoding-types] | ||
version = "0.2" | ||
path = "src/types" | ||
|
@@ -27,23 +36,23 @@ path = "src/types" | |
# so we should use tilde requirements here. | ||
|
||
[dependencies.encoding-index-singlebyte] | ||
version = "~1.20141219.5" | ||
version = "~1.20141219.6" | ||
path = "src/index/singlebyte" | ||
|
||
[dependencies.encoding-index-korean] | ||
version = "~1.20141219.5" | ||
version = "~1.20141219.6" | ||
path = "src/index/korean" | ||
|
||
[dependencies.encoding-index-japanese] | ||
version = "~1.20141219.5" | ||
version = "~1.20141219.6" | ||
path = "src/index/japanese" | ||
|
||
[dependencies.encoding-index-simpchinese] | ||
version = "~1.20141219.5" | ||
version = "~1.20141219.6" | ||
path = "src/index/simpchinese" | ||
|
||
[dependencies.encoding-index-tradchinese] | ||
version = "~1.20141219.5" | ||
version = "~1.20141219.6" | ||
path = "src/index/tradchinese" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.