2023-03-25 06:39:54 +00:00
|
|
|
[package]
|
2023-03-26 02:28:47 +00:00
|
|
|
name = "jellyfish"
|
2023-03-26 05:10:00 +00:00
|
|
|
version = "0.11.0-alpha.4"
|
2023-03-25 06:39:54 +00:00
|
|
|
edition = "2021"
|
2023-03-26 02:28:47 +00:00
|
|
|
description = "Approximate and phonetic matching of strings."
|
|
|
|
authors = ["James Turk <dev@jamesturk.net>"]
|
|
|
|
repository = "https://github.com/jamesturk/jellyfish/"
|
|
|
|
license = "MIT"
|
2023-03-25 06:39:54 +00:00
|
|
|
|
2023-03-25 06:50:08 +00:00
|
|
|
[package.metadata.maturin]
|
2023-03-26 02:28:47 +00:00
|
|
|
name = "jellyfish._rustyfish"
|
2023-03-25 06:50:08 +00:00
|
|
|
|
2023-03-25 06:39:54 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
2023-03-26 02:28:47 +00:00
|
|
|
name = "jellyfish"
|
2023-03-25 06:39:54 +00:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pyo3 = "0.18.1"
|
2023-03-26 02:28:47 +00:00
|
|
|
unicode-segmentation = "^1.6.0"
|
|
|
|
unicode-normalization = "^0.1"
|
2023-03-26 05:10:00 +00:00
|
|
|
tinyvec = "1.6.0"
|
2023-03-26 22:40:00 +00:00
|
|
|
smallvec = "1.10.0"
|
2023-03-26 02:28:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
csv = "1.1"
|
2023-03-27 00:32:12 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
python = []
|