diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-24 12:07:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-24 12:07:52 +0900 |
| commit | 8b2dbea5f367bf925f2370a753dddb4c6af0cc0d (patch) | |
| tree | 1b12c186def3c4b66a7ca42b6a54250387627bb3 /plugins/tokenize-ja/Cargo.toml | |
| parent | af847a4fd3a2dbcc6840944e0385b5c2830b13aa (diff) | |
| download | phpconkagawa-2025-slides-8b2dbea5f367bf925f2370a753dddb4c6af0cc0d.tar.gz phpconkagawa-2025-slides-8b2dbea5f367bf925f2370a753dddb4c6af0cc0d.tar.zst phpconkagawa-2025-slides-8b2dbea5f367bf925f2370a753dddb4c6af0cc0d.zip | |
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" |
