[package] name = "kodama-bin" version = "0.1.2" #:version authors = ["Diffeo "] description = """ Agglomerative hierarchical clustering tools. """ documentation = "https://github.com/diffeo/kodama" homepage = "https://github.com/diffeo/kodama" repository = "https://github.com/diffeo/kodama" readme = "README.md" keywords = ["agglomerative", "hierarchical", "cluster", "fastcluster", "linkage"] license = "MIT" [[bin]] name = "locations" path = "src/locations.rs" [dependencies] # For agglomerative hierarchical clustering. kodama = { version = "0.2.2", path = ".." } # For reading/writing arrays. byteorder = "1.2.6" # For argv parsing. clap = "2.32.0" # For CSV parsing. csv = "1" # For data parallelism. rayon = "1" # For automatic deserialization into structs when parsing CSV. serde = "1" serde_derive = "1" [profile.release] debug = true