2023-03-25 06:39:54 +00:00
|
|
|
[package]
|
2023-03-26 02:28:47 +00:00
|
|
|
name = "jellyfish"
|
2024-05-28 18:00:37 +00:00
|
|
|
version = "1.0.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-27 03:09:38 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
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]
|
2023-11-17 18:56:19 +00:00
|
|
|
pyo3 = "0.20.0"
|
2023-03-26 02:28:47 +00:00
|
|
|
unicode-segmentation = "^1.6.0"
|
|
|
|
unicode-normalization = "^0.1"
|
2023-03-26 22:40:00 +00:00
|
|
|
smallvec = "1.10.0"
|
2023-04-02 19:29:08 +00:00
|
|
|
ahash = "0.8.3"
|
2024-07-28 07:29:57 +00:00
|
|
|
num-traits = "0.2"
|
2023-03-26 02:28:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
csv = "1.1"
|
2023-03-27 00:32:12 +00:00
|
|
|
|
|
|
|
[features]
|
2023-04-02 19:29:08 +00:00
|
|
|
python = []
|