1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14name = "textdistance" 15version = "1.1.1" 16authors = ["Gram <git@orsinium.dev>"] 17build = false 18autobins = false 19autoexamples = false 20autotests = false 21autobenches = false 22description = "Lots of algorithms to compare how similar two sequences are" 23readme = "README.md" 24keywords = [ 25 "jaro", 26 "hamming", 27 "levenshtein", 28 "similarity", 29 "distance", 30] 31categories = [ 32 "algorithms", 33 "science", 34 "no-std", 35 "text-processing", 36 "command-line-interface", 37] 38license = "MIT" 39repository = "https://github.com/life4/textdistance.rs" 40 41[lib] 42name = "textdistance" 43path = "src/lib.rs" 44 45[[bin]] 46name = "textdistance" 47path = "src/main.rs" 48 49[[test]] 50name = "integration_test" 51path = "tests/integration_test.rs" 52 53[[bench]] 54name = "str_benchmarks" 55path = "benches/str_benchmarks.rs" 56harness = false 57 58[dev-dependencies.assert2] 59version = "0.3.15" 60 61[dev-dependencies.criterion] 62version = "0.5.1" 63 64[dev-dependencies.proptest] 65version = "1.1.0" 66 67[dev-dependencies.rstest] 68version = "0.22.0" 69 70[dev-dependencies.unicode-segmentation] 71version = "1.10.1" 72 73[features] 74default = ["std"] 75std = [] 76