[package] name = "sublime_fuzzy" version = "0.7.0" authors = ["Benedikt Schatz "] description = "Fuzzy matching algorithm based on Sublime Text's string search." repository = "https://github.com/Schlechtwetterfront/fuzzy-rs" readme = "README.md" keywords = ["fuzzy", "match", "search", "text"] categories = ["text-processing", "algorithms"] license-file = "LICENSE" [lib] path = "src/lib.rs" [[bin]] name = "sfz" path = "src/main.rs" [dependencies] serde_derive = { version = "1.0.67", optional = true } serde = { version = "1.0.67", optional = true } [features] serde_support = ["serde", "serde_derive"]