instant-segment/instant-segment-py/Cargo.toml

26 lines
693 B
TOML
Raw Normal View History

2021-03-24 09:59:57 +00:00
[package]
name = "instant-segment-py"
version = "0.1.5"
2021-03-24 09:59:57 +00:00
edition = "2018"
license = "Apache-2.0"
workspace = ".."
2021-05-28 13:20:28 +00:00
description = "Fast English word segmentation"
homepage = "https://github.com/InstantDomain/instant-segment"
repository = "https://github.com/InstantDomain/instant-segment"
2021-05-28 13:20:28 +00:00
documentation = "https://docs.rs/instant-segment"
readme = "../README.md"
2021-03-24 09:59:57 +00:00
[lib]
name = "instant_segment"
crate-type = ["cdylib"]
[dependencies]
2022-08-15 08:07:22 +00:00
ahash = "0.8"
2021-03-24 10:40:39 +00:00
bincode = "1.3.2"
2022-08-15 08:08:10 +00:00
instant-segment = { version = "0.10", path = "../instant-segment", features = ["with-serde"] }
2022-08-29 14:24:37 +00:00
pyo3 = { version = "0.17.1", features = ["extension-module"] }
2022-02-28 10:34:32 +00:00
smartstring = "1"
2021-03-24 09:59:57 +00:00
[package.metadata.maturin]
name = "instant-segment"