[package] name = "alg-grid" description = "Algorithms for pathfinding in a 2D or 3D grid." version = "0.1.1" authors = ["Gio Genre De Asis "] edition = "2018" license = "MPL-2.0" readme = "README.md" repository = "https://gitlab.com/harudagondi/alg-grid/" keywords = ["grid"] categories = ["no-std"] [badges] gitlab = { repository = "https://gitlab.com/harudagondi/alg-grid/" } is-it-maintained-issue-resolution = { repository = "https://gitlab.com/harudagondi/alg-grid/" } is-it-maintained-open-issues = { repository = "https://gitlab.com/harudagondi/alg-grid/" } maintenance = { status = "experimental" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["two_dim"] reverse_path = [] two_dim = [] three_dim = [] [dependencies] libm = "0.2" heapless = "0.5" map_vec = "0.3" num-rational = { version = "0.3", default-features = false, features = ["num-bigint"] } num-bigint = { version = "0.3", default-features = false }