jellyfish/Cargo.toml

27 lines
621 B
TOML
Raw Normal View History

2023-03-25 06:39:54 +00:00
[package]
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"
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]
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]
name = "jellyfish"
2023-03-25 06:39:54 +00:00
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.18.1"
unicode-segmentation = "^1.6.0"
unicode-normalization = "^0.1"
2023-03-26 05:10:00 +00:00
tinyvec = "1.6.0"
smallvec = "1.10.0"
[dev-dependencies]
csv = "1.1"