[package] name = "mapfilter" description="CLI tool to run regex and location based filters on nodes from OpenStreetMap" authors = ["lacop "] license = "MIT" edition = "2021" version = "0.1.0" readme = "README.md" homepage = "https://github.com/lacop/mapfilter" repository = "https://github.com/lacop/mapfilter" keywords = ["cli", "search", "openstreetmap", "osm", "map"] categories = ["command-line-utilities"] [dependencies] # CLI flags. clap = { version = "3.1", features = ["cargo", "derive"] } # Fancy progress bars, color output and number printing. console = "0.15" ellipse = "0.2" indicatif = "0.16" thousands = "0.2" # Error handling color-eyre = "0.5" # Reading OSM PBF files. osmpbf = "0.2" # Geo distance. geoutils = "0.4" # Regex evaluation. regex = "1" fancy-regex = "0.10"