# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "triple_accel" version = "0.4.0" authors = ["c0deb0t "] description = "Rust edit distance routines accelerated using SIMD. Supports fast Hamming, Levenshtein, restricted Damerau-Levenshtein, etc. distance calculations and string search." homepage = "https://github.com/Daniel-Liu-c0deb0t/triple_accel" readme = "README.md" keywords = ["SIMD", "levenshtein", "hamming", "string-search", "string-distance"] categories = ["algorithms", "hardware-support", "science", "text-processing"] license = "MIT" repository = "https://github.com/Daniel-Liu-c0deb0t/triple_accel" [profile.release] opt-level = 3 codegen-units = 1 panic = "abort" [[bench]] name = "rand_benchmarks" harness = false [dependencies] [dev-dependencies.criterion] version = "0.3" [dev-dependencies.rand] version = "0.7.3" [features] debug = [] default = ["jewel-avx", "jewel-sse", "jewel-8bit", "jewel-16bit", "jewel-32bit"] jewel-16bit = [] jewel-32bit = [] jewel-8bit = [] jewel-avx = [] jewel-sse = []