-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 730 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "console_log"
version = "1.1.0"
authors = ["Matthew Nicholson <matt@matt-land.com>"]
edition = "2018"
keywords = ["log", "logging", "console", "web_sys", "wasm"]
description = "A logging facility that routes Rust log messages to the browser's console."
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/iamcodemaker/console_log"
documentation = "https://docs.rs/console_log"
[dependencies.log]
version = "0.4"
default-features = false
[dependencies.web-sys]
version = "0.3"
default-features = false
features = ["console"]
[dependencies.wasm-bindgen]
version = "0.2"
default-features = false
optional = true
[features]
default = []
color = ["wasm-bindgen"]