gpx-web-utils/Cargo.toml
2021-12-07 21:54:40 -07:00

32 lines
710 B
TOML

[package]
name = "gpx-web-utils"
version = "0.0.1"
authors = ["Matthew Dillon <matthewrdillon@gmail.com>"]
edition = "2018"
description = "just some gpx-related tools that i want to use"
repository = "git://pingo.thermokar.st/gpx-web-utils"
license = "MIT"
[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
gpx = "0.8.1"
# TODO
# yew = "0.19"
yew = { git = "https://github.com/yewstack/yew.git" }
gloo-file = "0.2"
wee_alloc = "0.4"
console_error_panic_hook = { version = "0.1.6", optional = true }
[profile.release]
opt-level = 3
lto = true
[profile.dev]
opt-level = 3
lto = true
[dependencies.web-sys]
version = "0.3"
features = ["File", "Blob", "Element", "MouseEvent", "EventTarget", "Url", "Event"]