[package]
name = "basic-pathfinding"
description = "Tile-based A* pathfinding in Rust"
version = "0.2.0"
authors = ["CygnusRoboticus <joshuadaleharris@gmail.com>"]
edition = "2018"
repository = "https://github.com/CygnusRoboticus/basic-pathfinding"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wee_alloc = { version = "0.4.2", optional = true }
serde = "^1.0.59"
serde_derive = "^1.0.59"
log = "0.4.6"
env_logger = "0.6.1"
[dependencies.wasm-bindgen]
version = "^0.2"
features = ["serde-serialize"]
[profile.release]
opt-level = "s"