6

Cargo パッケージに単語リストをプレーン テキスト形式でバンドルしたいと考えています。これを行うために Cargo.toml を編集できますか?

npm を使用する場合、これを package.json に追加します。

"files": ["data/my_dictionary.txt"]

試してみincludeましたが、うまくいかないようです。

ここに私のCargo.tomlがあります

[package]

name = "chamkho"
version = "0.0.2"
authors = ["Vee Satayamas <vsatayamas@gmail.com>"]
test = true
description = "Thai word segmentation/breaking library and command line"
documentation = "https://github.com/veer66/chamkho/blob/master/README.md"
homepage = "https://github.com/veer66/chamkho/"
repository = "https://github.com/veer66/chamkho.git"
readme = "README.md"
keywords = ["text", "nlp", "thai", "library"]
license = "BSD-2-Clause"
include = ["**/*.txt", "**/*.rs","Cargo.toml"]

[[bin]]
name = "wordcut"
path = "src/cli.rs"

これはの出力ですcargo package -l

Cargo.toml
src/acc.rs
src/cli.rs
src/dict.rs
src/edge.rs
src/graph.rs
src/graph_builder.rs
src/lib.rs
src/space_acc.rs
src/wordcut.rs
tests/wordcut.rs
4

1 に答える 1

7

include = ["data/my_dictionary.txt"]はうまくいくはずだと信じています。

(これをドキュメントに追加する PR を開きました。)

于 2015-03-24T10:28:08.180 に答える