2021-03-24 09:59:57 +00:00
|
|
|
[package]
|
|
|
|
name = "instant-segment-py"
|
2023-10-27 09:13:47 +00:00
|
|
|
version = "0.1.7"
|
2021-03-24 09:59:57 +00:00
|
|
|
edition = "2018"
|
2023-10-16 16:56:58 +00:00
|
|
|
rust-version = "1.65"
|
2021-03-24 09:59:57 +00:00
|
|
|
license = "Apache-2.0"
|
|
|
|
workspace = ".."
|
2021-05-28 13:20:28 +00:00
|
|
|
description = "Fast English word segmentation"
|
2021-08-31 12:10:13 +00:00
|
|
|
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]
|
2021-03-24 10:40:39 +00:00
|
|
|
bincode = "1.3.2"
|
2023-10-16 16:51:12 +00:00
|
|
|
instant-segment = { version = "0.11", path = "../instant-segment", features = ["with-serde"] }
|
2024-07-02 08:26:17 +00:00
|
|
|
pyo3 = { version = "0.22", features = ["extension-module"] }
|
2022-02-28 10:34:32 +00:00
|
|
|
smartstring = "1"
|