2023-01-22 22:51:44 -05:00
|
|
|
[package]
|
2023-03-02 18:55:40 -05:00
|
|
|
name = "xpin"
|
2023-01-22 22:51:44 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-02-11 17:04:16 -05:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-02-22 21:55:15 -05:00
|
|
|
".",
|
2023-02-15 19:17:31 -05:00
|
|
|
"./words",
|
2023-03-02 18:55:40 -05:00
|
|
|
"./xpin-wasm/",
|
2023-02-25 18:30:15 -05:00
|
|
|
"./web",
|
2023-03-15 23:41:04 -04:00
|
|
|
"./web-frontend/",
|
2023-03-19 18:34:04 -04:00
|
|
|
"./spatial-coordinate-systems/",
|
2023-02-11 17:04:16 -05:00
|
|
|
]
|
|
|
|
|
2023-01-22 22:51:44 -05:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-02-25 18:54:44 -05:00
|
|
|
[features]
|
|
|
|
default = []
|
2023-01-22 22:51:44 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-18 21:13:42 -04:00
|
|
|
nom = "7.1.3"
|
2023-02-25 11:37:52 -05:00
|
|
|
s2 = {version="0.0.12", default-features=false}
|
2023-02-22 21:55:15 -05:00
|
|
|
thiserror = "1.0.38"
|
|
|
|
words = {path="./words"}
|
2023-02-22 21:55:40 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
csv = "1.1"
|
2023-03-11 15:18:01 -05:00
|
|
|
geoutils = "0.5.1"
|
2023-02-22 21:55:40 -05:00
|
|
|
serde={version="1", features=["derive"]}
|