[package] name = "fst-no-std" version = "0.4.8" authors = ["Andrew Gallant ", "Jonas Kruckenberg "] description = """ Use finite state transducers to compactly represents sets or maps of many strings (> 1 billion is possible). """ documentation = "https://docs.rs/fst-no-std" homepage = "https://github.com/CrabNejonas/fst" repository = "https://github.com/CrabNejonas/fst" readme = "README.md" keywords = ["search", "information", "retrieval", "dictionary", "map"] license = "Unlicense/MIT" edition = "2018" [workspace] members = ["bench"] [features] default = ["std"] levenshtein = ["utf8-ranges", "std"] std = ["alloc"] alloc = [] [dependencies] utf8-ranges = { version = "1.0.4", optional = true } [dev-dependencies] doc-comment = "0.3.1" fnv = "1.0.6" memmap2 = "0.5.10" quickcheck = { version = "0.9.2", default-features = false } rand = "0.7.3" [profile.release] debug = true [profile.bench] debug = true [package.metadata.docs.rs] features = ["levenshtein"]