2021-03-24 09:59:57 +00:00
|
|
|
[package]
|
|
|
|
name = "instant-segment-py"
|
2021-05-28 13:21:30 +00:00
|
|
|
version = "0.1.3"
|
2021-03-24 09:59:57 +00:00
|
|
|
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
workspace = ".."
|
2021-05-28 13:20:28 +00:00
|
|
|
description = "Fast English word segmentation"
|
|
|
|
homepage = "https://github.com/InstantDomainSearch/instant-segment"
|
|
|
|
repository = "https://github.com/InstantDomainSearch/instant-segment"
|
|
|
|
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]
|
|
|
|
ahash = "0.7.2"
|
2021-03-24 10:40:39 +00:00
|
|
|
bincode = "1.3.2"
|
2021-05-28 12:34:04 +00:00
|
|
|
instant-segment = { version = "0.8.2", path = "../instant-segment", features = ["with-serde"] }
|
2021-03-24 09:59:57 +00:00
|
|
|
pyo3 = { version = "0.13.2", features = ["extension-module"] }
|
|
|
|
smartstring = "0.2.6"
|
|
|
|
|
|
|
|
[package.metadata.maturin]
|
|
|
|
name = "instant-segment"
|