jellyfish/Cargo.toml

30 lines
647 B
TOML
Raw Permalink Normal View History

2023-03-25 06:39:54 +00:00
[package]
name = "jellyfish"
2024-07-28 07:34:08 +00:00
version = "1.1.0"
2023-03-25 06:39:54 +00:00
edition = "2021"
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]
name = "jellyfish"
2023-03-25 06:39:54 +00:00
crate-type = ["cdylib"]
[dependencies]
2024-07-28 08:11:30 +00:00
pyo3 = { version = "0.22.2", features = [] }
unicode-segmentation = "^1.6.0"
unicode-normalization = "^0.1"
2024-07-28 08:02:17 +00:00
smallvec = "^1.13"
ahash = "^0.8"
num-traits = "0.2.19"
[dev-dependencies]
csv = "1.1"
2023-03-27 00:32:12 +00:00
[features]
2023-04-02 19:29:08 +00:00
python = []