-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.15 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
[package]
authors = ["Deep Gaurav"]
categories = ["wasm"]
description = "RustyPipe"
license = "MIT"
name = "rusty_pipe_front"
readme = "./README.md"
# repository = "https://github.com/spielrs/yew-parcel-template.git"
version = "0.0.1"
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cfg-if = "0.1"
wasm-bindgen = "0.2"
console_error_panic_hook = { version = "0.1", optional = true }
wee_alloc = { version = "0.4" }
serde_derive = "1.0"
dotenv = "0.15"
failure = "0.1"
yew = { version="0.17", features = ["toml", "yaml", "msgpack", "cbor", "web_sys"]}
yew-router = { version = "0.14", features = ["web_sys"]}
web-sys = { version= "0.3", features=["HtmlInputElement","WebSocket","HtmlSelectElement","DomRect","Node", "Element", "Window","History", "CssStyleDeclaration","HtmlVideoElement","HtmlMediaElement"]}
log = "0.4.6"
wasm-logger = "0.2.0"
http = "0.2.1"
anyhow = "1.0"
rusty_pipe = {git = "https://github.com/deep-gaurav/rusty_pipe"}
reqwest = "0.10.6"
async-trait = "0.1.33"
wasm-bindgen-futures = "0.4.13"
base64 = "0.12.1"
human_format = "1.0.3"
[profile.release]
lto=true
opt-level= 3