You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
607 B
25 lines
607 B
[package]
|
|
name = "dubins_path"
|
|
description = "Dubins Path pathfinding algorithm"
|
|
version = "0.0.1"
|
|
homepage = "https://github.com/gnxlxnxx/dubins_path"
|
|
repository = "https://github.com/gnxlxnxx/dubins_path"
|
|
documentation = "https://docs.rs/dubins_path"
|
|
keywords = ["pathfinder", "dubinspath"]
|
|
categories = ["algorithms"]
|
|
readme = "README.md"
|
|
license = "Apache-2.0/MIT"
|
|
authors = ["Roman Kretschmer <gnxlxnxx@web.de>"]
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
thiserror = "1.0"
|
|
|
|
[dependencies.euclid]
|
|
git = "https://github.com/servo/euclid.git"
|
|
rev = "1a8b95d46fa33978f7a6dcbb7a4c0f2a0550a1c9"
|
|
|
|
[dev-dependencies]
|