Skip to content

Commit 2b8f478

Browse files
committed
Version bump
1 parent a7ac7dd commit 2b8f478

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Continuous integration
2+
on: [push, pull_request]
3+
4+
jobs:
5+
ci:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: dtolnay/rust-toolchain@stable
10+
- run: cargo build
11+
- run: cargo test

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
2-
/Cargo.lock
2+
Cargo.lock
3+
.DS_Store
34
/MathClass.txt

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@ name = "unicode-math-class"
33
version = "0.1.0"
44
authors = ["Laurenz <[email protected]>"]
55
edition = "2021"
6+
description = "Determine the Unicode class of a mathematical character."
7+
repository = "https://github.com/typst/unicode-math-class"
8+
readme = "README.md"
9+
license = "MIT OR Apache-2.0"
10+
categories = ["text-processing", "mathematics"]
11+
keywords = ["unicode", "class"]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# unicode-math-class
2+
[![Crates.io](https://img.shields.io/crates/v/unicode-math-class.svg)](https://crates.io/crates/unicode-math-class)
3+
[![Documentation](https://docs.rs/unicode-math-class/badge.svg)](https://docs.rs/unicode-math-class)
4+
25
Determine the Unicode class of a mathematical character in Rust.
36

7+
```toml
8+
[dependencies]
9+
unicode-math-class = "0.1"
10+
```
11+
412
## Example
513
```rust
614
use unicode_math_class::{class, MathClass};

0 commit comments

Comments
 (0)