blob: 5165d13fd1790e1a83de92037e5cae8a0d53a115 [file] [log] [blame]
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "textdistance"
version = "1.1.1"
authors = ["Gram <[email protected]>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lots of algorithms to compare how similar two sequences are"
readme = "README.md"
keywords = [
"jaro",
"hamming",
"levenshtein",
"similarity",
"distance",
]
categories = [
"algorithms",
"science",
"no-std",
"text-processing",
"command-line-interface",
]
license = "MIT"
repository = "https://github.com/life4/textdistance.rs"
[lib]
name = "textdistance"
path = "src/lib.rs"
[[bin]]
name = "textdistance"
path = "src/main.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[bench]]
name = "str_benchmarks"
path = "benches/str_benchmarks.rs"
harness = false
[dev-dependencies.assert2]
version = "0.3.15"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.proptest]
version = "1.1.0"
[dev-dependencies.rstest]
version = "0.22.0"
[dev-dependencies.unicode-segmentation]
version = "1.10.1"
[features]
default = ["std"]
std = []