workspace = { members = ["lib/*"] } [package] name = "intersection_detection" version = "0.1.3" edition = "2021" authors = ["Jacob Bergholtz "] description = "Compute intersections between 2D lines" license = "MIT OR Apache-2.0" repository = "https://github.com/cuppachino/intersection_detection" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] derive-new = "0.6.0" num = "0.4.1" point_like = { version = "0.1.2", path = "./lib/point_like" } [dev-dependencies] rstest = "0.18.2"