28 lines
705 B
TOML
28 lines
705 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: still waiting on a public release
|
|
# 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
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = ["File", "Blob", "Element", "MouseEvent", "EventTarget", "Url", "Event"]
|