this_algorithm/spatial-coordinate-systems/Cargo.toml
2023-03-28 23:46:17 -04:00

34 lines
949 B
TOML

[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
[features]
wasm_bindgen = ["dep:wasm-bindgen"]
serde = ["dep:serde"]
[dependencies]
# 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"
nom = "7.1.3"
pluscodes = "0.5.0"
utm = "0.1.6"
thiserror = "1.0.38"
url = "2.3.1"
wasm-bindgen={version="0.2",optional=true}
serde={version="1",optional=true,features=["derive"]}
strum={version="0.24",features=["derive"]}