v0.4 #1
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "weblog"
|
name = "weblog"
|
||||||
version = "0.3.0"
|
version = "0.4.0-beta.1"
|
||||||
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
authors = ["Rob Watson"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "weblog is a crate that defines a set of macros for calling `console.log()` and other members of the browser's console API when targeting Wasm."
|
description = "weblog is a crate that defines a set of macros for calling `console.log()` and other members of the browser's console API when targeting Wasm."
|
||||||
repository = "https://github.com/rfwatson/weblog"
|
repository = "https://git.netflux.io/rob/weblog"
|
||||||
keywords = ["wasm", "webassembly", "console", "log", "logging"]
|
keywords = ["wasm", "webassembly", "console", "log", "logging"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
|
@ -20,6 +20,6 @@ std_web = ["stdweb"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
stdweb = { version = ">= 0.4", optional = true }
|
stdweb = { version = ">= 0.4", optional = true }
|
||||||
weblog-proc-macro = { path = "./weblog-proc-macro", version = "0.3.0", optional = true }
|
weblog-proc-macro = { path = "./weblog-proc-macro", version = "0.4.0-beta.1", optional = true }
|
||||||
web-sys = { version = "0.3", features = ["console"], optional = true }
|
web-sys = { version = "0.3", features = ["console"], optional = true }
|
||||||
wasm-bindgen = { version = "0.2", optional = true }
|
wasm-bindgen = { version = "0.2", optional = true }
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "weblog-example-web-sys"
|
name = "weblog-example-web-sys"
|
||||||
version = "0.3.0"
|
version = "0.4.0-beta.1"
|
||||||
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
repository = "https://git.netflux.io/rob/weblog"
|
||||||
|
authors = ["Rob Watson"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "weblog-proc-macro"
|
name = "weblog-proc-macro"
|
||||||
version = "0.3.0"
|
version = "0.4.0-beta.1"
|
||||||
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
authors = ["Rob Watson"]
|
||||||
repository = "https://github.com/rfwatson/weblog"
|
repository = "https://git.netflux.io/rob/weblog"
|
||||||
description = "weblog is a crate that defines a set of macros for calling `console.log()` and other members of the browser's console API when targeting Wasm."
|
description = "weblog is a crate that defines a set of macros for calling `console.log()` and other members of the browser's console API when targeting Wasm."
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
keywords = ["wasm", "webassembly", "console", "log", "logging"]
|
keywords = ["wasm", "webassembly", "console", "log", "logging"]
|
||||||
|
|
Loading…
Reference in New Issue