jellyfish/Cargo.toml

30 lines
617 B
TOML
Raw Normal View History

2023-03-25 06:39:54 +00:00
[package]
name = "jellyfish"
2024-05-28 18:00:37 +00:00
version = "1.0.4"
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]
pyo3 = "0.20.0"
unicode-segmentation = "^1.6.0"
unicode-normalization = "^0.1"
smallvec = "1.10.0"
2023-04-02 19:29:08 +00:00
ahash = "0.8.3"
num-traits = "0.2"
[dev-dependencies]
csv = "1.1"
2023-03-27 00:32:12 +00:00
[features]
2023-04-02 19:29:08 +00:00
python = []