From 1d04a7139f33b0c661d61656d30cd4fa7b89e58a Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 25 Sep 2020 11:00:05 -0700 Subject: [PATCH] cargo cleanup; remove wee allocator; license --- Cargo.toml | 14 +++----------- LICENSE | 2 +- src/lib.rs | 8 ++------ 3 files changed, 6 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9ab3724..675a95c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,9 @@ name = "gpx-web-utils" version = "0.0.1" authors = ["Matthew Dillon "] edition = "2018" +description = "just some gpx-related tools that i want to use" +repository = "https://github.com/thermokarst/gpx-web-utils" +license = "MIT" [lib] crate-type = ["cdylib", "rlib"] @@ -13,19 +16,8 @@ default = ["console_error_panic_hook"] [dependencies] wasm-bindgen = "0.2.63" -# The `console_error_panic_hook` crate provides better debugging of panics by -# logging them with `console.error`. This is great for development, but requires -# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for -# code size when deploying. console_error_panic_hook = { version = "0.1.6", optional = true } -# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size -# compared to the default allocator's ~10K. It is slower than the default -# allocator, however. -# -# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now. -wee_alloc = { version = "0.4.5", optional = true } - [dev-dependencies] wasm-bindgen-test = "0.3.13" diff --git a/LICENSE b/LICENSE index 11f91d7..952e831 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2018 Matthew Dillon +Copyright (c) 2020 Matthew Dillon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/src/lib.rs b/src/lib.rs index ee8ac0a..43e3338 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,12 +2,6 @@ mod utils; use wasm_bindgen::prelude::*; -// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global -// allocator. -#[cfg(feature = "wee_alloc")] -#[global_allocator] -static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT; - #[wasm_bindgen] extern { fn alert(s: &str); @@ -15,5 +9,7 @@ extern { #[wasm_bindgen] pub fn greet() { + utils::set_panic_hook(); + alert("Hello, gpx-web-utils!"); }