Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
[package]

name = "unicode-xid"
version = "0.1.0"
version = "0.2.0"
authors = ["erick.tryzelaar <[email protected]>",
"kwantam <[email protected]>",
]

homepage = "https://github.com/unicode-rs/unicode-xid"
repository = "https://github.com/unicode-rs/unicode-xid"
documentation = "https://unicode-rs.github.io/unicode-xid"
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
keywords = ["text", "unicode", "xid"]
readme = "README.md"
description = """
Determine whether characters have the XID_Start
or XID_Continue properties according to
Unicode Standard Annex #31.
"""
exclude = ["/scripts/*", "/.travis.yml"]

exclude = [ "target/*", "Cargo.lock" ]
[badges]
travis-ci = { repository = "unicode-rs/unicode-xid" }

[features]
default = []
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ to your `Cargo.toml`:
[dependencies]
unicode-xid = "0.1.0"
```

# changelog

## 0.2.0

- Update to Unicode 12.1.0.

## 0.1.0

- Initial release.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
html_favicon_url = "https://unicode-rs.github.io/unicode-rs_sm.png")]

#![no_std]
#![cfg_attr(feature = "bench", feature(test, rustc_private))]
#![cfg_attr(feature = "bench", feature(test, unicode_internals))]

#[cfg(test)]
#[macro_use]
Expand Down