2023-03-19 18:34:04 -04:00
|
|
|
[package]
|
|
|
|
name = "spatial-coordinate-systems"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-03-28 22:11:23 -04:00
|
|
|
[features]
|
|
|
|
wasm_bindgen = ["dep:wasm-bindgen"]
|
2023-03-28 23:34:05 -04:00
|
|
|
serde = ["dep:serde"]
|
2023-03-28 22:11:23 -04:00
|
|
|
|
2023-03-19 18:34:04 -04:00
|
|
|
[dependencies]
|
2023-03-20 00:19:18 -04:00
|
|
|
# Excluding because rustc-serialize does not work with wasm
|
|
|
|
# dms-coordinates v1.1.0
|
|
|
|
# └── initial_conditions v0.4.0
|
|
|
|
# └── num v0.1.42
|
|
|
|
# ├── num-bigint v0.1.44
|
|
|
|
# │ └── rustc-serialize v0.3.24 <==
|
|
|
|
# ├── num-complex v0.1.43
|
|
|
|
# │ └── rustc-serialize v0.3.24 <==
|
|
|
|
# └── num-rational v0.1.42
|
|
|
|
# └── rustc-serialize v0.3.24 <==
|
|
|
|
# dms-coordinates = "1.1.0"
|
|
|
|
|
2023-03-19 18:34:04 -04:00
|
|
|
nom = "7.1.3"
|
|
|
|
pluscodes = "0.5.0"
|
|
|
|
utm = "0.1.6"
|
2023-03-24 18:42:14 -04:00
|
|
|
thiserror = "1.0.38"
|
2023-03-26 21:27:19 -04:00
|
|
|
url = "2.3.1"
|
2023-03-28 22:11:23 -04:00
|
|
|
|
|
|
|
wasm-bindgen={version="0.2",optional=true}
|
2023-03-28 23:34:05 -04:00
|
|
|
serde={version="1",optional=true,features=["derive"]}
|
2023-03-28 23:45:23 -04:00
|
|
|
strum={version="0.24",features=["derive"]}
|