diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-10-20 02:32:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-10-26 22:47:53 +0900 |
| commit | 751f595ff1d2142688dc833b4a7ec3e643a5c8a9 (patch) | |
| tree | 17a32750558e2493f4998dd0341f37647c322b80 /plugins/tokenize-ja/Cargo.toml | |
| parent | 5201520a74d8fa49f77a588204d768d8157f73f7 (diff) | |
| download | phpstudy-180-slides-751f595ff1d2142688dc833b4a7ec3e643a5c8a9.tar.gz phpstudy-180-slides-751f595ff1d2142688dc833b4a7ec3e643a5c8a9.tar.zst phpstudy-180-slides-751f595ff1d2142688dc833b4a7ec3e643a5c8a9.zip | |
draft2
Diffstat (limited to 'plugins/tokenize-ja/Cargo.toml')
| -rw-r--r-- | plugins/tokenize-ja/Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/tokenize-ja/Cargo.toml b/plugins/tokenize-ja/Cargo.toml new file mode 100644 index 0000000..7c00fe7 --- /dev/null +++ b/plugins/tokenize-ja/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "typst-plugin-tokenize-ja" +version = "0.1.0" +edition = "2024" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +anyhow = "1.0.100" +ciborium = "0.2.2" +serde = "1.0.228" + +[dependencies.lindera] +version = "1.2.0" +features = ["embedded-ipadic"] + +[dependencies.wasm-minimal-protocol] +git = "https://github.com/astrale-sharp/wasm-minimal-protocol" +rev = "e622e0e4a4f0f34be871a3a6bd22f6519415364b" + +[profile.release] +lto = true +strip = true +opt-level = "z" +codegen-units = 1 +panic = "abort" |
