[package] name = "appr_dbscan_rust" version = "0.1.2" authors = ["Ivano Donadi "] edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/Sauro98/appr_dbscan_rust" homepage = "https://github.com/Sauro98/appr_dbscan_rust" keywords = ["DBSCAN", "dbscan", "clustering", "approximated"] description = "Rust implementation of the approximated DBSCAN algorithm introduced by Gan and Tao" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "appr_dbscan" path = "src/lib.rs" [[bin]] name = "appr_dbscan" path = "src/main.rs" [profile.release] opt-level = 2 lto = true incremental = true #debug = 2 #debug-assertions = true [dependencies] partitions = "0.2.4" rstar = "0.8.2"