File tree Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
/target
2
- /Cargo.lock
2
+ Cargo.lock
3
+ .DS_Store
3
4
/MathClass.txt
Original file line number Diff line number Diff line change @@ -3,3 +3,9 @@ name = "unicode-math-class"
3
3
version = " 0.1.0"
4
4
authors = [
" Laurenz <[email protected] >" ]
5
5
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" ]
Original file line number Diff line number Diff line change 1
1
# 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
+
2
5
Determine the Unicode class of a mathematical character in Rust.
3
6
7
+ ``` toml
8
+ [dependencies ]
9
+ unicode-math-class = " 0.1"
10
+ ```
11
+
4
12
## Example
5
13
``` rust
6
14
use unicode_math_class :: {class, MathClass };
You can’t perform that action at this time.
0 commit comments